]> granicus.if.org Git - python/commitdiff
Vladimir Marangozov:
authorGuido van Rossum <guido@python.org>
Tue, 21 Dec 1999 15:55:47 +0000 (15:55 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 21 Dec 1999 15:55:47 +0000 (15:55 +0000)
Here's a patch that avoids a warning caused by the "const char* pathname"
declaration for _PyImport_GetDynLoadFunc (in dynload_aix). The "aix_load"
function's 1st arg is prototyped as "char *pathname".

Python/dynload_aix.c

index 18a5bd0eccb41de18db9a65a754accc3c7c575f2..f8f431754d42bb82240b4c14b23c7c1d248ad895 100644 (file)
@@ -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;