diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-01-20 05:15:26 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-01-20 05:15:26 +0000 |
commit | 7f3e4adf6057d93e8c372bebec61dda825e4b37e (patch) | |
tree | 482882be66708dfbc0586e2727ddfec54b1c7c96 /Python | |
parent | 2ad1a444e56ae2c1eafeb9c9f7384170987cd947 (diff) | |
download | cpython-git-7f3e4adf6057d93e8c372bebec61dda825e4b37e.tar.gz |
SF patch #103336: Missing cast.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c index 8e1cfd83ae..87b236a0b0 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -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; |