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-12-03 21:35:10 +0300
committerTon Roosendaal <ton@blender.org>2010-12-03 21:35:10 +0300
commit5ae3c5d321322b68138bf8c9d3637bbbcc443edc (patch)
tree600c8e1b41e0e0eb076bb51aa6bbc4da0b6c4a18 /source/blender/imbuf
parent45922c91508883dadd1befd205602e7183ce8392 (diff)
Irx report:
Missing void declarator in init ffmpg (appears to be error now). Thanks lmg!
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/imbuf/intern/util.c b/source/blender/imbuf/intern/util.c
index b4dd491452e..bd3bc7f2a3f 100644
--- a/source/blender/imbuf/intern/util.c
+++ b/source/blender/imbuf/intern/util.c
@@ -219,8 +219,8 @@ void silence_log_ffmpeg(int quiet)
}
}
-extern void do_init_ffmpeg();
-void do_init_ffmpeg()
+extern void do_init_ffmpeg(void);
+void do_init_ffmpeg(void)
{
static int ffmpeg_init = 0;
if (!ffmpeg_init) {