From: Victor Stinner Date: Wed, 19 May 2010 01:50:45 +0000 (+0000) Subject: Ooops, add missing ";" in my previous commit (r81324, typeobject.c) X-Git-Tag: v3.2a1~750 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ba644a62b0637b4a816554c3f8ab9379dbcd84b1;p=thirdparty%2FPython%2Fcpython.git Ooops, add missing ";" in my previous commit (r81324, typeobject.c) It's time to go to bed... --- diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 3dfc037aa702..369bac6bb977 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -1351,9 +1351,9 @@ consistent method resolution\norder (MRO) for bases"); if (name != NULL) { name_str = _PyUnicode_AsString(name); if (name_str == NULL) - name_str = "?" + name_str = "?"; } else - name_str = "?" + name_str = "?"; off += PyOS_snprintf(buf + off, sizeof(buf) - off, " %s", name_str); Py_XDECREF(name); if (--n && (size_t)(off+1) < sizeof(buf)) {