Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2016-03-22 17:33:28 +0300
committerDiego Biurrun <diego@biurrun.de>2016-03-23 11:25:30 +0300
commit8dead2aaca4aa8b84b77b05745755afb56b7d37a (patch)
tree26639cd6652d303f57f2646d160bb9c89b593ac7 /libavcodec/libopenh264enc.c
parentd909f43b5c773a73c8d526638744547ba4aa8c59 (diff)
Move const qualifier before type name
Diffstat (limited to 'libavcodec/libopenh264enc.c')
-rw-r--r--libavcodec/libopenh264enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libopenh264enc.c b/libavcodec/libopenh264enc.c
index 747beef96b..daab41fac9 100644
--- a/libavcodec/libopenh264enc.c
+++ b/libavcodec/libopenh264enc.c
@@ -85,7 +85,7 @@ static int libopenh264_to_libav_log_level(int libopenh264_log_level)
//
// typedef void (*WelsTraceCallback) (void* ctx, int level, const char* string);
-static void libopenh264_trace_callback(void *ctx, int level, char const *msg)
+static void libopenh264_trace_callback(void *ctx, int level, const char *msg)
{
// The message will be logged only if the requested EQUIVALENT libav log level is
// less than or equal to the current libav log level.