Skip to content

Commit

Permalink
test/minimal-example.c: do not hardcode program name in usage text.
Browse files Browse the repository at this point in the history
  • Loading branch information
diogocp committed Aug 19, 2015
1 parent 1fcd50e commit c7bcfa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/minimal-example.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ int main(int ac, const char* av[]) {
int i;

if (ac < 2) {
fprintf(stderr, "usage: r128-test FILENAME...\n");
fprintf(stderr, "usage: %s FILENAME...\n", av[0]);
exit(1);
}

Expand Down

0 comments on commit c7bcfa3

Please sign in to comment.