Skip to content

Commit 3969476

Browse files
committed
More verbose error message for not yet implemented arguments
1 parent ad47057 commit 3969476

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ main (int argc, char *argv[])
362362
}
363363

364364
if(arg && strncmp(arg, "appimage-", 8) == 0) {
365-
fprintf(stderr,"Not yet implemented in version %s\n", VERSION_NUMBER);
365+
fprintf(stderr,"%s is not yet implemented in version %s\n", arg, VERSION_NUMBER);
366366
exit(1);
367367
}
368368

0 commit comments

Comments
 (0)