X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/085cedfc6d4bf43c6feac2150cad47aea37b106f..1c570cbefde061bf4aee1d0ab99bebb9fab40846:/sbr/fmt_compile.c diff --git a/sbr/fmt_compile.c b/sbr/fmt_compile.c index 9ef39467..0fd83d1e 100644 --- a/sbr/fmt_compile.c +++ b/sbr/fmt_compile.c @@ -270,7 +270,7 @@ static struct ftable functable[] = { #define PUTC(c) do { NEW(FT_CHAR,0,0); fp->f_char = (c); } while (0) static char *format_string; -static unsigned char *usr_fstring; /* for CERROR */ +static char *usr_fstring; /* for CERROR */ #define CERROR(str) compile_error (str, cp) @@ -321,7 +321,7 @@ compile_error(char *str, char *cp) for (i = errpos-errctx; i < errpos; i++) { #ifdef LOCALE - if (iscntrl(usr_fstring[i])) + if (iscntrl((unsigned char) usr_fstring[i])) #else if (usr_fstring[i] < 32) #endif