xfree86/int10: mark printk as _X_ATTRIBUTE_PRINTF
authorKeith Packard <keithp@keithp.com>
Sun, 17 Nov 2013 07:31:55 +0000 (23:31 -0800)
committerKeith Packard <keithp@keithp.com>
Sun, 12 Jan 2014 18:14:50 +0000 (10:14 -0800)
Signed-off-by: Keith Packard <keithp@keithp.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
hw/xfree86/x86emu/x86emu/regs.h

index 2ecafa0..3a7456e 100644 (file)
@@ -39,6 +39,8 @@
 #ifndef __X86EMU_REGS_H
 #define __X86EMU_REGS_H
 
+#include <X11/Xfuncproto.h>
+
 /*---------------------- Macros and type definitions ----------------------*/
 
 #ifdef PACK
@@ -337,7 +339,8 @@ extern "C" {                    /* Use "C" linkage when in C++ mode */
 
 /* Function to log information at runtime */
 
-    void printk(const char *fmt, ...);
+    void printk(const char *fmt, ...)
+        _X_ATTRIBUTE_PRINTF(1, 2);
 
 #ifdef  __cplusplus
 }                               /* End of "C" linkage for C++           */