commit | 5616c6d6904e7863a0400a549fac7d1a50635ed0 | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Sun Aug 26 05:32:41 2007 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Sun Aug 26 05:32:41 2007 +0000 |
tree | 27fe7409fd2ddd033c57360561bccada2c8629ce | |
parent | 3c814d2550b607672365b645b3283685858f7a82 [diff] [blame] |
Fix a couple of warnings
diff --git a/Python/import.c b/Python/import.c index 72138c2..24eeada 100644 --- a/Python/import.c +++ b/Python/import.c
@@ -2366,7 +2366,7 @@ "reload() argument must be module"); return NULL; } - name = PyModule_GetName(m); + name = (char*)PyModule_GetName(m); if (name == NULL) return NULL; if (m != PyDict_GetItemString(modules, name)) {