diff options
Diffstat (limited to 'coreutils/tee.c')
-rw-r--r-- | coreutils/tee.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/tee.c b/coreutils/tee.c index 2160141..d253028 100644 --- a/coreutils/tee.c +++ b/coreutils/tee.c @@ -28,7 +28,7 @@ int tee_main(int argc, char **argv) #else int c; #endif - retval = getopt32(argc, argv, "ia"); /* 'a' must be 2nd */ + retval = getopt32(argv, "ia"); /* 'a' must be 2nd */ argc -= optind; argv += optind; |