summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/macfsmodule.c
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1996-11-09 18:46:57 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1996-11-09 18:46:57 (GMT)
commit84fb1fab1ffb7e39e6c831668938c924d1a693dd (patch)
tree4643343c61f0aaff34795dc50f338134c3a2a8dc /Mac/Modules/macfsmodule.c
parent26ee1260a20dba4ed89165e187c8db74b8de82a8 (diff)
downloadcpython-84fb1fab1ffb7e39e6c831668938c924d1a693dd.zip
cpython-84fb1fab1ffb7e39e6c831668938c924d1a693dd.tar.gz
cpython-84fb1fab1ffb7e39e6c831668938c924d1a693dd.tar.bz2
Got rid of nfullpath()
Diffstat (limited to 'Mac/Modules/macfsmodule.c')
-rw-r--r--Mac/Modules/macfsmodule.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Mac/Modules/macfsmodule.c b/Mac/Modules/macfsmodule.c
index 91e63eb..e8a7fb9 100644
--- a/Mac/Modules/macfsmodule.c
+++ b/Mac/Modules/macfsmodule.c
@@ -33,7 +33,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <Aliases.h>
#include <LowMem.h>
-#include "nfullpath.h"
#include "getapplbycreator.h"
#ifdef THINK_C
@@ -406,7 +405,7 @@ mfss_as_pathname(self, args)
if (!newgetargs(args, ""))
return NULL;
- err = nfullpath(&self->fsspec, strbuf);
+ err = PyMac_GetFullPath(&self->fsspec, strbuf);
if ( err ) {
PyErr_Mac(ErrorObject, err);
return NULL;