Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-06-06 10:02:46 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-06-06 10:02:46 +0400
commita6b505ef0b2e23abe5c2ba52b78e0b411d746b7a (patch)
tree1dc3684a9519365f51b1880b92c3a3beb409c8b9 /source/blender/makesrna
parent0a361247ff3956906d67c28413d65bcc28f1a814 (diff)
style cleanup
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_define.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_define.c b/source/blender/makesrna/intern/rna_define.c
index 20b1d56b22e..969e715bebf 100644
--- a/source/blender/makesrna/intern/rna_define.c
+++ b/source/blender/makesrna/intern/rna_define.c
@@ -521,8 +521,8 @@ void RNA_identifier_sanitize(char *identifier, int property)
for (a = 0; kwlist_prop[a]; a++) {
if (strcmp(identifier, kwlist_prop[a]) == 0) {
/* this keyword is reserved by python.
- * just replace the last character by '_' to keep it readable.
- */
+ * just replace the last character by '_' to keep it readable.
+ */
identifier[strlen(identifier) - 1] = '_';
break;
}