Fixed a couple printf usage errors.

This commit is contained in:
Lewis Van Winkle
2016-01-24 20:43:49 -06:00
parent 00f8febe43
commit 6e0e01f67b
2 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@
int main(int argc, char *argv[])
{
if (argc < 2) {
printf("Usage: example2 \"expression\"\n", argv[0]);
printf("Usage: example2 \"expression\"\n");
return 0;
}