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:
authorTon Roosendaal <ton@blender.org>2010-11-28 21:54:43 +0300
committerTon Roosendaal <ton@blender.org>2010-11-28 21:54:43 +0300
commit49102a84d114f10dbe69577d9d6f1813c2d0290a (patch)
treea03cfd2706cabcab500bbf7267844c066c0b7f9f /source/blender/editors/space_sequencer
parentd01054da0f569581d5802f3184fd330568c24774 (diff)
Variable declaration in code, not allowed!
Also made it NULL, looks nicer than 0 ;)
Diffstat (limited to 'source/blender/editors/space_sequencer')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index f264e90194f..8b5580cf0c2 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -2557,11 +2557,11 @@ static int sequencer_rendersize_exec(bContext *C, wmOperator *UNUSED(op))
int retval = OPERATOR_CANCELLED;
Scene *scene= CTX_data_scene(C);
Sequence *active_seq = seq_active_get(scene);
+ StripElem *se = NULL;
if(active_seq==NULL)
return OPERATOR_CANCELLED;
- StripElem * se = 0;
if (active_seq->strip) {
switch (active_seq->type) {