Use PROGNAME in the usage screen

This commit is contained in:
Pierre Pronchery 2017-10-14 00:32:54 +02:00
parent d90392078d
commit 0635104721

View File

@ -487,7 +487,7 @@ static void _on_run_terminal_toggle(GtkWidget * widget, gpointer data)
/* usage */
static int _usage(void)
{
fputs(_("Usage: run\n"), stderr);
fprintf(stderr, _("Usage: %s\n"), PROGNAME);
return 1;
}