mirror of https://github.com/python/cpython
Fix the char* vs. const char* mismatch for the argument of aix_loaderror()
This commit is contained in:
parent
58e64a82ee
commit
547936c86f
|
@ -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];
|
||||
|
|
Loading…
Reference in New Issue