Fix lay-out of previous fix.
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 972560d..fb7456d 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -773,7 +773,8 @@
 	object *v;
 	char *key;
 {
-	if (key != last_name_char || strcmp(key, getstringvalue(last_name_object)) != 0) {
+	if (key != last_name_char ||
+	    strcmp(key, getstringvalue(last_name_object)) != 0) {
 		XDECREF(last_name_object);
 		last_name_object = newstringobject(key);
 		if (last_name_object == NULL) {
@@ -791,7 +792,8 @@
 	char *key;
 	object *item;
 {
-	if (key != last_name_char || strcmp(key, getstringvalue(last_name_object)) != 0) {
+	if (key != last_name_char ||
+	    strcmp(key, getstringvalue(last_name_object)) != 0) {
 		XDECREF(last_name_object);
 		last_name_object = newstringobject(key);
 		if (last_name_object == NULL) {