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:
authorKent Mein <mein@cs.umn.edu>2008-12-03 20:36:30 +0300
committerKent Mein <mein@cs.umn.edu>2008-12-03 20:36:30 +0300
commitedc06b0b5b949ca1982d729a19e1ee0c6e9f155d (patch)
tree4f14e494c4d6ebaca9c0bf43f4b553f63c5956cb /source/blender/editors/space_time
parent4e6b6dd3f91b837b81eaf44b8ea5b1652fd3bfea (diff)
A couple of small fixes to clear up some warnings.
BOP_Merge2.cpp had same variable name at different scopes so I renamed a couple. resources.c added include that was missing. (This maybe was going to move? the old one was commented out) ed_markers.c initalized a var that needed it. Kent
Diffstat (limited to 'source/blender/editors/space_time')
-rw-r--r--source/blender/editors/space_time/ed_markers.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/space_time/ed_markers.c b/source/blender/editors/space_time/ed_markers.c
index 0fcd9e910a7..deb56b286b4 100644
--- a/source/blender/editors/space_time/ed_markers.c
+++ b/source/blender/editors/space_time/ed_markers.c
@@ -254,7 +254,8 @@ static int ed_marker_move_init(bContext *C, wmOperator *op)
ListBase *markers= context_get_markers(C);
MarkerMove *mm;
TimeMarker *marker;
- int totmark, a;
+ int totmark=0;
+ int a;
for (marker= markers->first; marker; marker= marker->next)
if (marker->flag & SELECT) totmark++;