summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/macosmodule.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/macosmodule.c
parent26ee1260a20dba4ed89165e187c8db74b8de82a8 (diff)
downloadcpython-84fb1fab1ffb7e39e6c831668938c924d1a693dd.zip
cpython-84fb1fab1ffb7e39e6c831668938c924d1a693dd.tar.gz
cpython-84fb1fab1ffb7e39e6c831668938c924d1a693dd.tar.bz2
Got rid of nfullpath()
Diffstat (limited to 'Mac/Modules/macosmodule.c')
-rw-r--r--Mac/Modules/macosmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/macosmodule.c b/Mac/Modules/macosmodule.c
index 5ad53b4..5c5e3c5 100644
--- a/Mac/Modules/macosmodule.c
+++ b/Mac/Modules/macosmodule.c
@@ -584,7 +584,7 @@ MacOS_openrf(PyObject *self, PyObject *args)
FILE *tfp;
char pathname[257];
- if ( err=nfullpath(&fss, &pathname) ) {
+ if ( err=PyMac_GetFullPath(&fss, pathname) ) {
PyMac_Error(err);
Py_DECREF(fp);
return NULL;