summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorVladimir Marangozov <vladimir.marangozov@t-online.de>2000-09-04 00:54:56 (GMT)
committerVladimir Marangozov <vladimir.marangozov@t-online.de>2000-09-04 00:54:56 (GMT)
commit547936c86ff4b839d109abe80eed93044c622637 (patch)
tree0143ae104c91d4d98141b4453f221db5bcb18f23 /Python
parent58e64a82eeec12711a55349f86ced990989a360b (diff)
downloadcpython-547936c86ff4b839d109abe80eed93044c622637.zip
cpython-547936c86ff4b839d109abe80eed93044c622637.tar.gz
cpython-547936c86ff4b839d109abe80eed93044c622637.tar.bz2
Fix the char* vs. const char* mismatch for the argument of aix_loaderror()
Diffstat (limited to 'Python')
-rw-r--r--Python/dynload_aix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/dynload_aix.c b/Python/dynload_aix.c
index e67f921..4467c70 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];