diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/dynload_aix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/dynload_aix.c b/Python/dynload_aix.c index 18a5bd0..f8f4317 100644 --- a/Python/dynload_aix.c +++ b/Python/dynload_aix.c @@ -221,7 +221,7 @@ dl_funcptr _PyImport_GetDynLoadFunc(const char *name, const char *funcname, if (!staticmodlistptr) if (aix_getoldmodules(&staticmodlistptr) == -1) return NULL; - p = (dl_funcptr) aix_load(pathname, L_NOAUTODEFER, 0); + p = (dl_funcptr) aix_load((char *)pathname, L_NOAUTODEFER, 0); if (p == NULL) { aix_loaderror(pathname); return NULL; |