Avoid passing negative values to isspace() on systems with signed chars.
This commit is contained in:
parent
3e019deaed
commit
80209ec51c
@ -580,7 +580,7 @@ center_stream(FILE *stream, const char *name) {
|
||||
size_t length;
|
||||
while ((line=get_line(stream, &length)) != 0) {
|
||||
size_t l=length;
|
||||
while (l>0 && isspace(*line)) { ++line; --l; }
|
||||
while (l>0 && isspace((unsigned char)*line)) { ++line; --l; }
|
||||
length=l;
|
||||
while (l<goal_length) { putchar(' '); l+=2; }
|
||||
fwrite(line, 1, length, stdout);
|
||||
|
Loading…
Reference in New Issue
Block a user