diff options
author | Lukasz Marek <lukasz.m.luki@gmail.com> | 2014-02-14 23:13:37 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-02-15 01:50:41 +0100 |
commit | ffe50a92a8aaa88d8d21dfd9e42738a276d5d92b (patch) | |
tree | a16ea1a4f066f74113857271fe7e48f01ef55382 | |
parent | c55143179234dc552090bac6ec90c3b4edf4506f (diff) | |
download | ffmpeg-ffe50a92a8aaa88d8d21dfd9e42738a276d5d92b.tar.gz |
lavc/tiff_common: add const to silent warnings
Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/tiff_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tiff_common.c b/libavcodec/tiff_common.c index ce91219150..251af3d497 100644 --- a/libavcodec/tiff_common.c +++ b/libavcodec/tiff_common.c @@ -75,7 +75,7 @@ unsigned ff_tget(GetByteContext *gb, int type, int le) } } -static char *auto_sep(int count, char *sep, int i, int columns) +static const char *auto_sep(int count, const char *sep, int i, int columns) { if (sep) return i ? sep : ""; |