From: Jack Jansen Date: Mon, 20 Feb 1995 15:46:10 +0000 (+0000) Subject: Minor bug fix X-Git-Tag: v1.2b4~194 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b2f6a7ec001ab378aba26a45edc2f688bb3a7dc4;p=thirdparty%2FPython%2Fcpython.git Minor bug fix --- diff --git a/Mac/Modules/macosmodule.c b/Mac/Modules/macosmodule.c index 7dcc497f6d2b..c1bab504aba3 100644 --- a/Mac/Modules/macosmodule.c +++ b/Mac/Modules/macosmodule.c @@ -185,7 +185,7 @@ MacOS_SetScheduleTimes(PyObject *self, PyObject *args) bgi = bgy = -2; if (!PyArg_ParseTuple(args, "ll|ll", &fgi, &fgy, &bgi, &bgy)) return NULL; - if ( bgi == -2 ) { + if ( bgi == -2 || bgy == -2 ) { bgi = fgi; bgy = fgy; }