[FFmpeg-cvslog] avutil/timestamp: remove ""

Michael Niedermayer git at videolan.org
Thu Jun 13 15:01:39 CEST 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Jun 13 14:57:00 2013 +0200| [fa125c5e82fce4f82b36076d44421c1ded255409] | committer: Michael Niedermayer

avutil/timestamp: remove ""

This may fix an error with C++

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fa125c5e82fce4f82b36076d44421c1ded255409
---

 libavutil/timestamp.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavutil/timestamp.h b/libavutil/timestamp.h
index c7348d8..f63a08c 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;
 }
 



More information about the ffmpeg-cvslog mailing list