don't pass argc in getopt32, it's superfluous
[platform/upstream/busybox.git] / coreutils / touch.c
index 7b82339..7a1dd35 100644 (file)
@@ -26,7 +26,7 @@ int touch_main(int argc, char **argv)
 {
        int fd;
        int status = EXIT_SUCCESS;
-       int flags = getopt32(argc, argv, "c");
+       int flags = getopt32(argv, "c");
 
        argv += optind;