diff options
Diffstat (limited to 'usr.bin/column/column.c')
-rw-r--r-- | usr.bin/column/column.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/column/column.c b/usr.bin/column/column.c index 31f316f..0385652 100644 --- a/usr.bin/column/column.c +++ b/usr.bin/column/column.c @@ -269,7 +269,7 @@ input(FILE *fp) NULL) err(1, (char *)NULL); while (fgets(buf, MAXLINELEN, fp)) { - for (p = buf; *p && isspace(*p); ++p); + for (p = buf; *p && isspace((unsigned char)*p); ++p); if (!*p) continue; if (!(p = strchr(p, '\n'))) { |