More stuff
[oweals/busybox.git] / touch.c
diff --git a/touch.c b/touch.c
index 8dac1029474e7ad7152ee75419c7573bcb01ad7e..d882a63193192357bab41a67d7671cd374eb3090 100644 (file)
--- a/touch.c
+++ b/touch.c
@@ -28,7 +28,7 @@
 #include <errno.h>
 
 
-const char touch_usage[] = "touch [-c] file [file ...]\n\n"
+static const char touch_usage[] = "touch [-c] file [file ...]\n\n"
 "\tUpdate the last-modified date on the given file[s].\n";
 
 
@@ -40,8 +40,7 @@ touch_main(int argc, char **argv)
     int create=TRUE;
 
     if (argc < 2) {
-       fprintf(stderr, "Usage: %s %s", *argv, touch_usage);
-       exit( FALSE);
+       usage( touch_usage);
     }
     argc--;
     argv++;