Bernhard Fischer says: fix comment typo
authorMike Frysinger <vapier@gentoo.org>
Tue, 16 Aug 2005 05:27:51 +0000 (05:27 -0000)
committerMike Frysinger <vapier@gentoo.org>
Tue, 16 Aug 2005 05:27:51 +0000 (05:27 -0000)
libbb/xgetlarg.c

index 56fb60e..0460aad 100644 (file)
@@ -22,7 +22,7 @@ extern long bb_xgetlarg(const char *arg, int base, long lower, long upper)
        assert(arg!=NULL);
 
        /* Don't allow leading whitespace. */
-       if ((isspace)(*arg)) {  /* Use an actual funciton call for minimal size. */
+       if (isspace(*arg)) {    /* Use an actual function call for minimal size. */
                bb_show_usage();
        }