Bernhard Fischer says: fix comment typo

This commit is contained in:
Mike Frysinger 2005-08-16 05:27:51 +00:00
parent c8e2de6e1b
commit 71224980e1

View 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();
}