wm: teppich

Download patch

ref: ddde627e1dff1e967bf0e5f3eec2698366f65e16
parent: 2583a6cc4b07f282663d58a398be363fa5e9558c
author: mkf <mkf@cloud9p.org>
date: Thu Dec 7 12:56:13 EST 2023

cmd/ls: fix usage

--- a/cmd/ls.c
+++ b/cmd/ls.c
@@ -6,7 +6,7 @@
 static int
 usage()
 {
-	printf("ls: usage: ls [-l] dir\n");
+	printf("usage: ls [-l] dir\n");
 	return USAGE;
 }
 
@@ -58,7 +58,7 @@
 	}
 	if(argc != 2)
 		return usage();
-	
+
 	fs = getfs(argv[1]);
 	if(fs == nil)
 	{