diff options
Diffstat (limited to 'procps/watch.c')
-rw-r--r-- | procps/watch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/procps/watch.c b/procps/watch.c index 97aa047..20859c3 100644 --- a/procps/watch.c +++ b/procps/watch.c @@ -51,9 +51,9 @@ int watch_main(int argc UNUSED_PARAM, char **argv) xopen("/dev/null", O_RDONLY); #endif - opt_complementary = "-1:n+"; // at least one param; -n NUM + opt_complementary = "-1"; // at least one param; -n NUM // "+": stop at first non-option (procps 3.x only) - opt = getopt32(argv, "+dtn:", &period); + opt = getopt32(argv, "+dtn:+", &period); argv += optind; // watch from both procps 2.x and 3.x does concatenation. Example: |