gio-tool: Remove a stray semicolon

This meant the help text would always be outputted, rendering
the same mode useless and the code below it dead.

Coverity CID: 1357352
This commit is contained in:
Philip Withnall 2016-07-11 21:47:49 +01:00
parent d896ad269e
commit 996bb34986

View File

@ -176,7 +176,7 @@ handle_save (int argc, char *argv[], gboolean do_help)
return 1;
}
if (argc > 2);
if (argc > 2)
{
show_help (context, _("Too many arguments"));
return 1;