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>2019-03-01 15:43:34 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-01 15:43:34 +0300
commitd0e245647c6df67ba6d53a67cae87083757b805e (patch)
tree8decbbe3aa111cf2ea00e04701c45bee94ca06c3 /source/blender/editors/space_view3d/view3d_walk.c
parent053c3bd48a80bc5f4b844f0739c436e82b2c7c8f (diff)
Cleanup: use unsigned types in 3D view editor
Diffstat (limited to 'source/blender/editors/space_view3d/view3d_walk.c')
-rw-r--r--source/blender/editors/space_view3d/view3d_walk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_view3d/view3d_walk.c b/source/blender/editors/space_view3d/view3d_walk.c
index fe0396cb26b..0caaf6eb113 100644
--- a/source/blender/editors/space_view3d/view3d_walk.c
+++ b/source/blender/editors/space_view3d/view3d_walk.c
@@ -949,7 +949,7 @@ static int walkApply(bContext *C, wmOperator *op, WalkInfo *walk)
#ifdef NDOF_WALK_DEBUG
{
- static unsigned int iteration = 1;
+ static uint iteration = 1;
printf("walk timer %d\n", iteration++);
}
#endif