diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-09-30 17:54:30 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-09-30 17:54:30 +0000 |
commit | 08f29f82b94704a9d2ea415a421bc579098303b7 (patch) | |
tree | 4556f98151708e54acf390c35b12340ba9c9e28d | |
parent | b49d4175c26ae5b3dd0a532f9653752b21375410 (diff) | |
download | ffmpeg-08f29f82b94704a9d2ea415a421bc579098303b7.tar.gz |
Patch for attribute(printf) by (Michel Bardiaux <mbardiaux at peaktime dot be>)
Originally committed as revision 2322 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/avio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index cc0b5f9b05..df287b8214 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -110,7 +110,7 @@ int url_feof(ByteIOContext *s); #define URL_EOF (-1) int url_fgetc(ByteIOContext *s); #ifdef __GNUC__ -int url_fprintf(ByteIOContext *s, const char *fmt, ...) __attribute__ ((format (printf, 2, 3))); +int url_fprintf(ByteIOContext *s, const char *fmt, ...) __attribute__ ((__format__ (__printf__, 2, 3))); #else int url_fprintf(ByteIOContext *s, const char *fmt, ...); #endif |