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:
authorBastien Montagne <montagne29@wanadoo.fr>2015-04-13 22:00:06 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-04-13 22:00:45 +0300
commit057c7c6fabdb6106079fe4af90721c79c5c59142 (patch)
tree26f365cfe4834a2e46b6ee0add285bef1b41ed2c /source/blender/makesrna/intern/rna_nodetree.c
parent86fe894f8624fe64c5acde94de0e5d14e8803a55 (diff)
Cleanup: do not use _reportf() when not doing any string formating!
Also usual minor i18n messages stuff...
Diffstat (limited to 'source/blender/makesrna/intern/rna_nodetree.c')
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 075b139c6c4..da77b9ee6ea 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -1578,7 +1578,7 @@ static bNodeSocket *rna_Node_outputs_new(ID *id, bNode *node, ReportList *report
sock = nodeAddSocket(ntree, node, SOCK_OUT, type, identifier, name);
if (sock == NULL) {
- BKE_reportf(reports, RPT_ERROR, "Unable to create socket");
+ BKE_report(reports, RPT_ERROR, "Unable to create socket");
}
else {
ntreeUpdateTree(G.main, ntree);