Fix missing initializer warnings in gio/gapplication-tool.c

gio/gapplication-tool.c:51:3: error: missing initializer for field ‘synopsis’ of ‘const struct help_topic’
   51 |   },
      |   ^
gio/gapplication-tool.c:54:3: error: missing initializer for field ‘synopsis’ of ‘const struct help_topic’
   54 |   },
      |   ^
This commit is contained in:
Emmanuel Fleury 2020-11-17 23:15:33 +01:00
parent e89bd4cc15
commit 02126e0a07

View File

@ -47,10 +47,12 @@ static const struct help_topic topics[] = {
N_("[COMMAND]")
},
{ "version", N_("Print version"),
N_("Print version information and exit")
N_("Print version information and exit"),
NULL
},
{ "list-apps", N_("List applications"),
N_("List the installed D-Bus activatable applications (by .desktop files)")
N_("List the installed D-Bus activatable applications (by .desktop files)"),
NULL
},
{ "launch", N_("Launch an application"),
N_("Launch the application (with optional files to open)"),