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>2014-03-20 13:45:20 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-03-20 13:46:38 +0400
commit9767ff891607fed7b6b5c2f1a99a122f220ec5dc (patch)
tree40bb8cba697f1250392fea0a677ff7dcfcde39ec /source/blender/makesrna/intern/rna_sequencer_api.c
parent3fc293cd5718a70044438efea3514d6fb50e8a2c (diff)
Code cleanup: use true/false in sequencer functions
Diffstat (limited to 'source/blender/makesrna/intern/rna_sequencer_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_sequencer_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_sequencer_api.c b/source/blender/makesrna/intern/rna_sequencer_api.c
index aee9c054b6f..2777f642bca 100644
--- a/source/blender/makesrna/intern/rna_sequencer_api.c
+++ b/source/blender/makesrna/intern/rna_sequencer_api.c
@@ -325,7 +325,7 @@ static void rna_Sequences_remove(ID *id, Editing *ed, ReportList *reports, Point
Sequence *seq = seq_ptr->data;
Scene *scene = (Scene *)id;
- if (BLI_remlink_safe(&ed->seqbase, seq) == FALSE) {
+ if (BLI_remlink_safe(&ed->seqbase, seq) == false) {
BKE_reportf(reports, RPT_ERROR, "Sequence '%s' not in scene '%s'", seq->name + 2, scene->id.name + 2);
return;
}