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
path: root/extern
diff options
context:
space:
mode:
authorDaniel Genrich <daniel.genrich@gmx.net>2012-05-27 23:31:35 +0400
committerDaniel Genrich <daniel.genrich@gmx.net>2012-05-27 23:31:35 +0400
commit15e6219fd37ce1df24a2163a7cbcf76ef65403d9 (patch)
tree7d333cdcd6ee0c2ecbb5482e24dc7b2e5fee50e4 /extern
parent5e6fd995fedbfece229e133cd9708a2f0f6ab868 (diff)
parent1e13168183361e65e01c7613f094407780d0967e (diff)
Merge from trunk r46913-r47088
Diffstat (limited to 'extern')
-rw-r--r--extern/libredcode/codec.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/extern/libredcode/codec.c b/extern/libredcode/codec.c
index f47a85cbb13..4a2dcdd6f5b 100644
--- a/extern/libredcode/codec.c
+++ b/extern/libredcode/codec.c
@@ -7,17 +7,20 @@
#include <stdio.h>
#include <string.h>
-static void error_callback(const char *msg, void *client_data) {
+static void error_callback(const char *msg, void *client_data)
+{
FILE *stream = (FILE*)client_data;
fprintf(stream, "[R3D ERR] %s", msg);
}
-static void warning_callback(const char *msg, void *client_data) {
+static void warning_callback(const char *msg, void *client_data)
+{
FILE *stream = (FILE*)client_data;
fprintf(stream, "[R3D WARN] %s", msg);
}
-static void info_callback(const char *msg, void *client_data) {
+static void info_callback(const char *msg, void *client_data)
+{
(void)client_data;
fprintf(stdout, "[R3D INFO] %s", msg);
}