commit | 7f3e4adf6057d93e8c372bebec61dda825e4b37e | [log] [tgz] |
---|---|---|
author | Tim Peters <tim.peters@gmail.com> | Sat Jan 20 05:15:26 2001 +0000 |
committer | Tim Peters <tim.peters@gmail.com> | Sat Jan 20 05:15:26 2001 +0000 |
tree | 482882be66708dfbc0586e2727ddfec54b1c7c96 | |
parent | 2ad1a444e56ae2c1eafeb9c9f7384170987cd947 [diff] [blame] |
SF patch #103336: Missing cast.
diff --git a/Python/compile.c b/Python/compile.c index 8e1cfd8..87b236a 100644 --- a/Python/compile.c +++ b/Python/compile.c
@@ -183,7 +183,7 @@ 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;