summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-05-19 01:50:45 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-05-19 01:50:45 (GMT)
commitba644a62b0637b4a816554c3f8ab9379dbcd84b1 (patch)
treec9af56c4e190ed8c739b12bd83b7b3126be7215b /Objects/typeobject.c
parente5f99f398ce56bada62a7fce28892705eafe6989 (diff)
downloadcpython-ba644a62b0637b4a816554c3f8ab9379dbcd84b1.zip
cpython-ba644a62b0637b4a816554c3f8ab9379dbcd84b1.tar.gz
cpython-ba644a62b0637b4a816554c3f8ab9379dbcd84b1.tar.bz2
Ooops, add missing ";" in my previous commit (r81324, typeobject.c)
It's time to go to bed...
Diffstat (limited to 'Objects/typeobject.c')
-rw-r--r--Objects/typeobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index 3dfc037..369bac6 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)) {