From: curt Date: Wed, 16 May 2007 16:47:13 +0000 (+0000) Subject: Type consistency. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9a5840f6e70159ee5df8597b4f8f6f3e8bc96b0f;p=flightgear.git Type consistency. --- diff --git a/tests/test-text.cxx b/tests/test-text.cxx index cc9a4e09e..dec0c85fd 100644 --- a/tests/test-text.cxx +++ b/tests/test-text.cxx @@ -4,7 +4,7 @@ #include static void readchars( FILE *fd ) { - char c; + int c; while ( (c = fgetc(fd)) != EOF ) { printf("c = %d", c); if ( c == 10 ) {