Ooops, add missing ";" in my previous commit (r81324, typeobject.c)

It's time to go to bed...
This commit is contained in:
Victor Stinner 2010-05-19 01:50:45 +00:00
parent e5f99f398c
commit ba644a62b0
1 changed files with 2 additions and 2 deletions

View File

@ -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)) {