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:
authorMartin Poirier <theeth@yahoo.com>2009-12-09 21:47:52 +0300
committerMartin Poirier <theeth@yahoo.com>2009-12-09 21:47:52 +0300
commit1d9eb1e0a07dd45217297bedfd033a2bd9bf4750 (patch)
treec3935bf7bd2eedff80495063288b2b09f07b0544
parent177e27ea4b426dd49b8661a02d4319a7d2f07e16 (diff)
Invalid return type
-rw-r--r--source/blender/makesrna/intern/rna_sequence.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_sequence.c b/source/blender/makesrna/intern/rna_sequence.c
index 6f9cbd608e3..e401a7c756d 100644
--- a/source/blender/makesrna/intern/rna_sequence.c
+++ b/source/blender/makesrna/intern/rna_sequence.c
@@ -44,7 +44,7 @@
#ifdef RNA_RUNTIME
/* build a temp referene to the parent */
-static int meta_tmp_ref(Sequence *seq_par, Sequence *seq)
+static void meta_tmp_ref(Sequence *seq_par, Sequence *seq)
{
for (; seq; seq= seq->next) {
seq->tmp= seq_par;