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:
authorJoseph Eagar <joeedh@gmail.com>2009-07-28 21:23:45 +0400
committerJoseph Eagar <joeedh@gmail.com>2009-07-28 21:23:45 +0400
commit94e06c9859478e1afdd1814f186c441327df3e5d (patch)
tree4f4686fe958eafa8440c3bcede8a1bb85a0fb760
parentddb09d3220a3e2efa755cb46e474f5ceb53c4aa4 (diff)
changed some sprintfs to strcats, thanks to Fredrik Axelsson for the patch
-rw-r--r--source/blender/src/editmesh_loop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/editmesh_loop.c b/source/blender/src/editmesh_loop.c
index dfd18e208fb..21cd69cd2b4 100644
--- a/source/blender/src/editmesh_loop.c
+++ b/source/blender/src/editmesh_loop.c
@@ -246,9 +246,9 @@ void CutEdgeloop(int numcuts)
sprintf(msg,"Number of Cuts: %d",numcuts);
if(smooth){
- sprintf(msg,"%s (S)mooth: on",msg);
+ strcat(msg," (S)mooth: on");
} else {
- sprintf(msg,"%s (S)mooth: off",msg);
+ strcat(msg," (S)mooth: off");
}
headerprint(msg);