mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
Fix the char* vs. const char* mismatch for the argument of aix_loaderror()
This commit is contained in:
parent
58e64a82ee
commit
547936c86f
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ aix_bindnewmodule(void *newmoduleptr, void *modlistptr)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
aix_loaderror(char *pathname)
|
aix_loaderror(const char *pathname)
|
||||||
{
|
{
|
||||||
|
|
||||||
char *message[1024], errbuf[1024];
|
char *message[1024], errbuf[1024];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue