diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-23 21:03:36 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-23 21:03:36 (GMT) |
commit | 0a116f3a2901b040faa356ffc3dbb91a7f00d215 (patch) | |
tree | e40ba85845e717a5314e54c0406a90c1b585111d /Modules/getpath.c | |
parent | 446f32367b4900b8cbbeb155c5553d8277fa56cf (diff) | |
download | cpython-0a116f3a2901b040faa356ffc3dbb91a7f00d215.zip cpython-0a116f3a2901b040faa356ffc3dbb91a7f00d215.tar.gz cpython-0a116f3a2901b040faa356ffc3dbb91a7f00d215.tar.bz2 |
Squashed compiler warnings by adding casts, making sure prototypes are in
scope and looking at types.
Diffstat (limited to 'Modules/getpath.c')
-rw-r--r-- | Modules/getpath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/getpath.c b/Modules/getpath.c index ee97271..54b57c7 100644 --- a/Modules/getpath.c +++ b/Modules/getpath.c @@ -421,7 +421,7 @@ calculate_path(void) */ pythonModule = NSModuleForSymbol(NSLookupAndBindSymbol("_Py_Initialize")); /* Use dylib functions to find out where the framework was loaded from */ - buf = NSLibraryNameForModule(pythonModule); + buf = (char *)NSLibraryNameForModule(pythonModule); if (buf != NULL) { /* We're in a framework. */ /* See if we might be in the build directory. The framework in the |