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>2010-11-11 14:46:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-11-11 14:46:45 +0300
commit36901ff5bb346c0e43591bb9f8f0e8cc079dbcd0 (patch)
tree96cccc3c2ce8a47325fdd4b50e69691bff84b774 /source/blender/editors
parent4d0a5451c5ca870f3cb7c693a7fe61c28b368228 (diff)
use BLI_snprintf, fixed building on msvc.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/space_view3d/view3d_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_view3d/view3d_draw.c b/source/blender/editors/space_view3d/view3d_draw.c
index c890c884f64..d21a0ac6721 100644
--- a/source/blender/editors/space_view3d/view3d_draw.c
+++ b/source/blender/editors/space_view3d/view3d_draw.c
@@ -728,7 +728,7 @@ static void draw_viewport_name(ARegion *ar, View3D *v3d)
char tmpstr[24];
if (v3d->localvd) {
- snprintf(tmpstr, sizeof(tmpstr), "%s (Local)", name);
+ BLI_snprintf(tmpstr, sizeof(tmpstr), "%s (Local)", name);
name= tmpstr;
}