[Intel-gfx] [PATCH 90/90] assembler: Mark format() as PRINTFLIKE in the disassembler
Damien Lespiau
damien.lespiau at intel.com
Mon Feb 4 16:28:25 CET 2013
So when making changes in code using that function, we get warnings
about mismatches between the format string and arguments.
Signed-off-by: Damien Lespiau <damien.lespiau at intel.com>
---
assembler/brw_disasm.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/assembler/brw_disasm.c b/assembler/brw_disasm.c
index 3fee682..4dec829 100644
--- a/assembler/brw_disasm.c
+++ b/assembler/brw_disasm.c
@@ -27,6 +27,7 @@
#include <unistd.h>
#include <stdarg.h>
+#include "brw_compat.h"
#include "brw_context.h"
#include "brw_defines.h"
@@ -400,6 +401,7 @@ static int string (FILE *file, const char *string)
return 0;
}
+static int format (FILE *f, const char *format, ...) PRINTFLIKE(2, 3);
static int format (FILE *f, const char *format, ...)
{
char buf[1024];
--
1.7.7.5
More information about the Intel-gfx
mailing list