diff options
author | rbuj <[email protected]> | 2021-10-28 15:23:52 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2022-02-19 23:37:38 +0100 |
commit | 24ea262463a37bab5f23a47b269b39f00a7f380e (patch) | |
tree | 336c3819b96d8c8698b7b513a9b87c1d71b8ff02 /sendto/caja-sendto-command.c | |
parent | 3841c753e3f103c7164e9eaf2d6b96d7c644209b (diff) | |
download | caja-extensions-24ea262463a37bab5f23a47b269b39f00a7f380e.tar.bz2 caja-extensions-24ea262463a37bab5f23a47b269b39f00a7f380e.tar.xz |
Fix build warnings about missing field initializer
Diffstat (limited to 'sendto/caja-sendto-command.c')
-rw-r--r-- | sendto/caja-sendto-command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sendto/caja-sendto-command.c b/sendto/caja-sendto-command.c index e7d3698..8181db6 100644 --- a/sendto/caja-sendto-command.c +++ b/sendto/caja-sendto-command.c @@ -80,7 +80,7 @@ struct _NS_ui { static const GOptionEntry entries[] = { { G_OPTION_REMAINING, '\0', 0, G_OPTION_ARG_FILENAME_ARRAY, &filenames, "Files to send", "[FILES...]" }, - { NULL } + { NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL } }; static void |