Commit ffe50a92 authored by Lukasz Marek's avatar Lukasz Marek Committed by Michael Niedermayer

lavc/tiff_common: add const to silent warnings

Signed-off-by: 's avatarLukasz Marek <lukasz.m.luki@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent c5514317
...@@ -75,7 +75,7 @@ unsigned ff_tget(GetByteContext *gb, int type, int le) ...@@ -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) if (sep)
return i ? sep : ""; return i ? sep : "";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment