From: Frederic Marchal Date: Sun, 26 Apr 2015 15:08:07 +0000 (+0200) Subject: Tell the compiler that debuga_more uses printf like arguments. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2ef286b655066d4120f98e801f0209c66b24e17f;p=thirdparty%2Fsarg.git Tell the compiler that debuga_more uses printf like arguments. --- diff --git a/include/defs.h b/include/defs.h index 2ac5ae7..cd181e6 100644 --- a/include/defs.h +++ b/include/defs.h @@ -375,7 +375,7 @@ void output_html_string(FILE *fp_ou,const char *str,int maxlen); void output_html_url(FILE *fp_ou,const char *url); void output_html_link(FILE *fp_ou,const char *url,int maxlen); void debuga(const char *msg,...) __attribute__((format(printf,1,2))); -void debuga_more(const char *msg,...); +void debuga_more(const char *msg,...) __attribute__((format(printf,1,2))); void debugaz(const char *msg,...) __attribute__((format(printf,1,2))); void my_lltoa(unsigned long long int n, char *s, int ssize, int len); void url_module(const char *url, char *w2);