Commit 20ecf764dd3d1c272d02363f0211e01d241503eb

Stefan Sperling 2018-03-12T21:36:30

tweak unkown command message

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/got/got.c b/got/got.c
index f0cb1f8..68caca6 100644
--- a/got/got.c
+++ b/got/got.c
@@ -109,7 +109,7 @@ main(int argc, char *argv[])
 		return 0;
 	}
 
-	fprintf(stderr, "%s: unknown command -- %s\n", getprogname(), argv[0]);
+	fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
 	return 1;
 }