From: Guido van Rossum Date: Tue, 19 Nov 1991 20:26:28 +0000 (+0000) Subject: Fixed duplicate use of OFF macro. X-Git-Tag: v0.9.8~741 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d97f048ae825d852bba1eea361ac41cb428cd3b0;p=thirdparty%2FPython%2Fcpython.git Fixed duplicate use of OFF macro. --- diff --git a/Modules/flmodule.c b/Modules/flmodule.c index 143a1ee4692f..277b1fa9f125 100644 --- a/Modules/flmodule.c +++ b/Modules/flmodule.c @@ -281,6 +281,8 @@ static struct memberlist generic_memberlist[] = { {NULL} /* Sentinel */ }; +#undef OFF + static object * generic_getattr(g, name) genericobject *g; @@ -1734,6 +1736,8 @@ form_dealloc(f) DEL(f); } +#define OFF(x) offsetof(FL_FORM, x) + static struct memberlist form_memberlist[] = { {"window", T_LONG, OFF(window), RO}, {"w", T_FLOAT, OFF(w)}, @@ -1747,6 +1751,8 @@ static struct memberlist form_memberlist[] = { {NULL} /* Sentinel */ }; +#undef OFF + static object * form_getattr(f, name) formobject *f;