From f7813a5324be39d13ab536c245d15dfc602a7849 Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Sun, 29 Dec 2013 12:19:38 +0000 Subject: basic type mechanism working --- ffmpeg/libavutil/timestamp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ffmpeg/libavutil/timestamp.h') diff --git a/ffmpeg/libavutil/timestamp.h b/ffmpeg/libavutil/timestamp.h index c7348d8..f63a08c 100644 --- a/ffmpeg/libavutil/timestamp.h +++ b/ffmpeg/libavutil/timestamp.h @@ -39,7 +39,7 @@ 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"); - else snprintf(buf, AV_TS_MAX_STRING_SIZE, "%"PRId64"", ts); + else snprintf(buf, AV_TS_MAX_STRING_SIZE, "%"PRId64, ts); return buf; } -- cgit v1.2.3