From: Vladimir Marangozov Date: Mon, 4 Sep 2000 00:54:56 +0000 (+0000) Subject: Fix the char* vs. const char* mismatch for the argument of aix_loaderror() X-Git-Tag: v2.0b1~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=547936c86ff4b839d109abe80eed93044c622637;p=thirdparty%2FPython%2Fcpython.git Fix the char* vs. const char* mismatch for the argument of aix_loaderror() --- diff --git a/Python/dynload_aix.c b/Python/dynload_aix.c index e67f921d974a..4467c70414fb 100644 --- a/Python/dynload_aix.c +++ b/Python/dynload_aix.c @@ -119,7 +119,7 @@ aix_bindnewmodule(void *newmoduleptr, void *modlistptr) } static void -aix_loaderror(char *pathname) +aix_loaderror(const char *pathname) { char *message[1024], errbuf[1024];