Commit 7f3e4adf authored by Tim Peters's avatar Tim Peters

SF patch #103336: Missing cast.

parent 2ad1a444
......@@ -183,7 +183,7 @@ static int
all_name_chars(unsigned char *s)
{
static char ok_name_char[256];
static unsigned char *name_chars = NAME_CHARS;
static unsigned char *name_chars = (unsigned char *)NAME_CHARS;
if (ok_name_char[*name_chars] == 0) {
unsigned char *p;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment