This patch removes an unnecessary check as
the condition can never occur.

Index: primes.c
===================================================================
--- primes.c    (revision 355983)
+++ primes.c    (working copy)
@@ -129,7 +129,7 @@
        switch (argc) {
        case 2:
                /* Start and stop supplied on the command line. */
-               if (argv[0][0] == '-' || argv[1][0] == '-')
+               if (argv[1][0] == '-')
                        errx(1, "negative numbers aren't permitted.");
 
                errno = 0;
-- 
Steve
_______________________________________________
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"

Reply via email to