summaryrefslogtreecommitdiffstats
path: root/c/build-tools/eolstrip.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/build-tools/eolstrip.c')
-rw-r--r--c/build-tools/eolstrip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/build-tools/eolstrip.c b/c/build-tools/eolstrip.c
index d15151c8b0..467b352322 100644
--- a/c/build-tools/eolstrip.c
+++ b/c/build-tools/eolstrip.c
@@ -197,7 +197,7 @@ process(char *arg)
if ( buffer[ length ] != '\n' )
error(ERR_ERRNO|ERR_FATAL, "Line %d too long in %s\n", line_number, arg);
- while ( isspace( buffer[ length ] ) )
+ while ( isspace( (int) buffer[ length ] ) )
buffer[ length-- ] = '\0';
if ( test_only ) {