From: Andrew M. Kuchling Date: Wed, 15 Jun 2005 18:46:50 +0000 (+0000) Subject: Fix check for error condition X-Git-Tag: v2.5a0~1689 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b5e7ff4aeb0eb17c27114523768ae6597e189c7c;p=python Fix check for error condition --- diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c index 2e14abb779..acff973f2a 100644 --- a/Modules/_cursesmodule.c +++ b/Modules/_cursesmodule.c @@ -2107,7 +2107,7 @@ PyCurses_Pair_Content(PyObject *self, PyObject *args) return NULL; } - if (!pair_content(pair, &f, &b)) { + if (pair_content(pair, &f, &b)==ERR) { PyErr_SetString(PyCursesError, "Argument 1 was out of range. (1..COLOR_PAIRS-1)"); return NULL;