Commit fa125c5e authored by Michael Niedermayer's avatar Michael Niedermayer

avutil/timestamp: remove ""

This may fix an error with C++
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent a9821bda
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
static inline char *av_ts_make_string(char *buf, int64_t ts) static inline char *av_ts_make_string(char *buf, int64_t ts)
{ {
if (ts == AV_NOPTS_VALUE) snprintf(buf, AV_TS_MAX_STRING_SIZE, "NOPTS"); if (ts == AV_NOPTS_VALUE) snprintf(buf, AV_TS_MAX_STRING_SIZE, "NOPTS");
else snprintf(buf, AV_TS_MAX_STRING_SIZE, "%"PRId64"", ts); else snprintf(buf, AV_TS_MAX_STRING_SIZE, "%"PRId64, ts);
return buf; return buf;
} }
......
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