changeset 405:e0e5d588f606

One "sign mismatch" warning down, 100 or so to go. I'm personally happier with -funsigned-char because everything is naturally 8-bit clean then, but that breaks tcc and I haven't tracked down why yet, and it doesn't even trim the warning down to a dull roar, so...
author landley@driftwood
date Sun, 08 Oct 2006 22:46:00 -0400
parents 1f9726b63fde
children 204dee5c5152
files tcc.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tcc.c	Sun Oct 08 22:28:01 2006 -0400
+++ b/tcc.c	Sun Oct 08 22:46:00 2006 -0400
@@ -634,7 +634,7 @@
 #endif
 
 /* WARNING: the content of this string encodes token numbers */
-static char tok_two_chars[] = "<=\236>=\235!=\225&&\240||\241++\244--\242==\224<<\1>>\2+=\253-=\255*=\252/=\257%=\245&=\246^=\336|=\374->\313..\250##\266";
+static unsigned char tok_two_chars[] = "<=\236>=\235!=\225&&\240||\241++\244--\242==\224<<\1>>\2+=\253-=\255*=\252/=\257%=\245&=\246^=\336|=\374->\313..\250##\266";
 
 #define TOK_EOF       (-1)  /* end of file */
 #define TOK_LINEFEED  10    /* line feed */