code cleanup: favor braces when blocks have mixed brace use.

This commit is contained in:
2013-03-09 03:46:30 +00:00
parent 9e1ead1940
commit ddddb7bab1
84 changed files with 689 additions and 322 deletions

View File

@@ -470,7 +470,9 @@ const char *BPy_IDProperty_Map_ValidateAndCreate(PyObject *name_obj, IDProperty
Py_XDECREF(keys);
Py_XDECREF(vals);
}
else return "invalid property value";
else {
return "invalid property value";
}
if (group->type == IDP_IDPARRAY) {
IDP_AppendArray(group, prop);