# HG changeset patch # User michaelni # Date 1064944470 0 # Node ID 786e8286ea4af4e4f644717703c6642ebf7e6e35 # Parent 777644de975a70bc1d216b03e0aad8b55b6c6c35 Patch for attribute(printf) by (Michel Bardiaux ) diff -r 777644de975a -r 786e8286ea4a avio.h --- a/avio.h Mon Sep 29 22:40:01 2003 +0000 +++ b/avio.h Tue Sep 30 17:54:30 2003 +0000 @@ -110,7 +110,7 @@ #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