Add printf attributes as suggested by gcc -Wmissing-format-attribute 47/9447/1
authorAlan Coopersmith <alan.coopersmith@oracle.com>
Sat, 20 Jul 2013 06:38:46 +0000 (23:38 -0700)
committerSung-Jin Park <sj76.park@samsung.com>
Tue, 3 Sep 2013 04:11:40 +0000 (00:11 -0400)
Change-Id: Ibc927c7f9a64f0060404942c317a194f2f298618
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
dsimple.c
dsimple.h

index d2d52a4..38576f7 100644 (file)
--- a/dsimple.c
+++ b/dsimple.c
@@ -314,8 +314,7 @@ Window Window_With_Name(
 /*
  * outl: a debugging routine.  Flushes stdout then prints a message on stderr
  *       and flushes stderr.  Used to print messages when past certain points
- *       in code so we can tell where we are.  Outl may be invoked like
- *       printf with up to 7 arguments.
+ *       in code so we can tell where we are.  Outl may be invoked like printf.
  */
 void
 outl(const char *msg, ...)
@@ -331,7 +330,7 @@ outl(const char *msg, ...)
 
 
 /*
- * Standard fatal error routine - call like printf but maximum of 7 arguments.
+ * Standard fatal error routine - call like printf.
  * Does not require dpy or screen defined.
  */
 void Fatal_Error(const char *msg, ...)
index c249b45..b0422bd 100644 (file)
--- a/dsimple.h
+++ b/dsimple.h
@@ -76,5 +76,5 @@ void usage(void) _X_NORETURN;
 
 Window Select_Window(Display *, int);
 Window Window_With_Name(Display *, Window, const char *);
-void Fatal_Error(const char *, ...) _X_NORETURN;
-void outl(const char *, ...);
+void Fatal_Error(const char *, ...) _X_NORETURN _X_ATTRIBUTE_PRINTF(1, 2);
+void outl(const char *, ...) _X_ATTRIBUTE_PRINTF(1, 2);