diff options
Diffstat (limited to 'Modules/_hotshot.c')
-rw-r--r-- | Modules/_hotshot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_hotshot.c b/Modules/_hotshot.c index 97037ac..2eb7bdb 100644 --- a/Modules/_hotshot.c +++ b/Modules/_hotshot.c @@ -1453,7 +1453,7 @@ get_version_string(void) char *buffer; int i = 0; - while (*rev && !isdigit(*rev)) + while (*rev && !isdigit((int)*rev)) ++rev; while (rev[i] != ' ' && rev[i] != '\0') ++i; |