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>2014-04-29 16:37:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-29 16:37:44 +0400
commitc034a252bb08be3879ee14e7c0db2204e03d4817 (patch)
tree1590159203ee0c5e144ef1918a8c221c6b2cc52c /source/blender/editors/space_node
parent1dcf95684929806e80e3d0b514c8690cd757b1bd (diff)
Code cleanup: quiet warnings
Diffstat (limited to 'source/blender/editors/space_node')
-rw-r--r--source/blender/editors/space_node/node_relationships.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_node/node_relationships.c b/source/blender/editors/space_node/node_relationships.c
index e8c4f7fb2ad..54cde7fb00a 100644
--- a/source/blender/editors/space_node/node_relationships.c
+++ b/source/blender/editors/space_node/node_relationships.c
@@ -404,7 +404,7 @@ static void node_link_update_header(bContext *C, bNodeLinkDrag *UNUSED(nldrag))
#define HEADER_LENGTH 256
char header[HEADER_LENGTH];
- BLI_snprintf(header, HEADER_LENGTH, IFACE_("LMB: drag node link, RMB: cancel"));
+ BLI_strncpy(header, IFACE_("LMB: drag node link, RMB: cancel"), HEADER_LENGTH);
ED_area_headerprint(CTX_wm_area(C), header);
#undef HEADER_LENGTH
}