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-06-19 13:29:06 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-06-19 13:31:25 +0300
commit1cf1f4889344528a4b16c0f5434342321d5ca13c (patch)
treed7befd3def5835e7674522cac43886b4f26a19c6 /source/blender/editors/armature
parent52e95ad3d392a1767f9eb46c1814c6bf6d8c7a89 (diff)
Cleanup: fix mismatch in printf formating (int/unsigned int).
Noisy and annoying with new gcc5...
Diffstat (limited to 'source/blender/editors/armature')
-rw-r--r--source/blender/editors/armature/pose_select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/armature/pose_select.c b/source/blender/editors/armature/pose_select.c
index 3bac50ef3ed..44470c1f827 100644
--- a/source/blender/editors/armature/pose_select.c
+++ b/source/blender/editors/armature/pose_select.c
@@ -821,7 +821,7 @@ static int pose_select_grouped_exec(bContext *C, wmOperator *op)
break;
default:
- printf("pose_select_grouped() - Unknown selection type %d\n", type);
+ printf("pose_select_grouped() - Unknown selection type %u\n", type);
break;
}