From fa125c5e82fce4f82b36076d44421c1ded255409 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 13 Jun 2013 14:57:00 +0200 Subject: [PATCH] avutil/timestamp: remove "" This may fix an error with C++ Signed-off-by: Michael Niedermayer --- libavutil/timestamp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/timestamp.h b/libavutil/timestamp.h index c7348d8f12..f63a08c579 100644 --- a/libavutil/timestamp.h +++ b/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; }