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:
-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);