Fix missing initializer warning in gio/gio-tool-copy.c

gio/gio-tool-copy.c:50:10: warning: missing field 'short_name' initializer
  { NULL }
         ^
This commit is contained in:
Emmanuel Fleury 2021-04-28 23:25:17 +02:00
parent c395e865bf
commit 8a3e184db9

View File

@ -47,7 +47,7 @@ static const GOptionEntry entries[] = {
{ "backup", 'b', 0, G_OPTION_ARG_NONE, &backup, N_("Backup existing destination files"), NULL },
{ "no-dereference", 'P', 0, G_OPTION_ARG_NONE, &no_dereference, N_("Never follow symbolic links"), NULL },
{ "default-permissions", 0, 0, G_OPTION_ARG_NONE, &default_permissions, N_("Use default permissions for the destination"), NULL },
{ NULL }
G_OPTION_ENTRY_NULL
};
static gint64 start_time;