summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1998-04-23 13:20:17 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1998-04-23 13:20:17 (GMT)
commitbbf4be2c2fee581606bb5fdeadefc8b104bc204f (patch)
tree58dc4955ccbfd2ac10d7e6d158e09a72105f7bcf /Mac
parent301b5bea3f05ade07622eccb19f1fe9e3c18cb73 (diff)
downloadcpython-bbf4be2c2fee581606bb5fdeadefc8b104bc204f.zip
cpython-bbf4be2c2fee581606bb5fdeadefc8b104bc204f.tar.gz
cpython-bbf4be2c2fee581606bb5fdeadefc8b104bc204f.tar.bz2
Incorrect argument for PyMacBuildwide()
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Include/macglue.h2
-rw-r--r--Mac/Python/macglue.c10
2 files changed, 6 insertions, 6 deletions
diff --git a/Mac/Include/macglue.h b/Mac/Include/macglue.h
index 9d2a92f..3f19548 100644
--- a/Mac/Include/macglue.h
+++ b/Mac/Include/macglue.h
@@ -113,7 +113,7 @@ PyObject *PyMac_BuildEventRecord(EventRecord *); /* Convert EventRecord to PyObj
int PyMac_GetFixed(PyObject *, Fixed *); /* argument parser for Fixed */
PyObject *PyMac_BuildFixed(Fixed); /* Convert Fixed to PyObject */
int PyMac_Getwide(PyObject *, wide *); /* argument parser for wide */
-PyObject *PyMac_Buildwide(wide); /* Convert wide to PyObject */
+PyObject *PyMac_Buildwide(wide *); /* Convert wide to PyObject */
void PyMac_InitApplet(void); /* Initialize and run an Applet */
void PyMac_Initialize(void); /* Initialize function for embedding Python */
diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c
index ac1bbbf..98517e1 100644
--- a/Mac/Python/macglue.c
+++ b/Mac/Python/macglue.c
@@ -1191,10 +1191,10 @@ PyMac_Getwide(PyObject *v, wide *rv)
PyObject *
-PyMac_Buildwide(wide w)
+PyMac_Buildwide(wide *w)
{
- if ( (w.hi == 0 && (w.lo & 0x80000000) == 0) ||
- (w.hi == -1 && (w.lo & 0x80000000) ) )
- return PyInt_FromLong(w.lo);
- return Py_BuildValue("(ll)", w.hi, w.lo);
+ if ( (w->hi == 0 && (w->lo & 0x80000000) == 0) ||
+ (w->hi == -1 && (w->lo & 0x80000000) ) )
+ return PyInt_FromLong(w->lo);
+ return Py_BuildValue("(ll)", w->hi, w->lo);
}