Incorrect argument for PyMacBuildwide()

This commit is contained in:
Jack Jansen 1998-04-23 13:20:17 +00:00
parent 301b5bea3f
commit bbf4be2c2f
2 changed files with 6 additions and 6 deletions

View File

@ -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 */

View File

@ -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);
}