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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-09-13 11:15:55 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-09-13 12:59:34 +0300
commitfa26012f515d918da4bcc875ab052572176f9afb (patch)
treea4484c193f0e6ea48b4c2769fd8d9995d4dd181a /source/blender/editors/space_clip/tracking_ops_track.c
parenta2b52dc5716a97e5413acbd6eefc9ce3788b6456 (diff)
Tracking: Cleanup, use bool type instead of int
Diffstat (limited to 'source/blender/editors/space_clip/tracking_ops_track.c')
-rw-r--r--source/blender/editors/space_clip/tracking_ops_track.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_clip/tracking_ops_track.c b/source/blender/editors/space_clip/tracking_ops_track.c
index 9536c64c415..4d3281c6cf9 100644
--- a/source/blender/editors/space_clip/tracking_ops_track.c
+++ b/source/blender/editors/space_clip/tracking_ops_track.c
@@ -127,7 +127,7 @@ static bool track_markers_check_direction(int backwards, int curfra, int efra)
return true;
}
-static int track_markers_initjob(bContext *C, TrackMarkersJob *tmj, bool backwards, bool sequence)
+static bool track_markers_initjob(bContext *C, TrackMarkersJob *tmj, bool backwards, bool sequence)
{
SpaceClip *sc = CTX_wm_space_clip(C);
MovieClip *clip = ED_space_clip_get_clip(sc);