X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=ustream.h;h=9a306180bc20f7ac87ee95b426fddbbba7f05055;hb=e80dc00ee90c29ef56ae28f414b0e5bb361206e7;hp=53e08280bf522118f6ff53447aa62e71aeb1b16e;hpb=60236c485387d33e1d02398a953a0834ad125161;p=project%2Flibubox.git diff --git a/ustream.h b/ustream.h index 53e0828..9a30618 100644 --- a/ustream.h +++ b/ustream.h @@ -150,8 +150,10 @@ void ustream_consume(struct ustream *s, int len); int ustream_read(struct ustream *s, char *buf, int buflen); /* ustream_write: add data to the write buffer */ int ustream_write(struct ustream *s, const char *buf, int len, bool more); -int ustream_printf(struct ustream *s, const char *format, ...); -int ustream_vprintf(struct ustream *s, const char *format, va_list arg); +int ustream_printf(struct ustream *s, const char *format, ...) + __attribute__ ((format (printf, 2, 3))); +int ustream_vprintf(struct ustream *s, const char *format, va_list arg) + __attribute__ ((format (printf, 2, 0))); /* ustream_get_read_buf: get a pointer to the next read buffer data */ char *ustream_get_read_buf(struct ustream *s, int *buflen);