assembler: Mark format() as PRINTFLIKE in the disassembler

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@intel.com>
This commit is contained in:
Damien Lespiau 2013-02-04 13:57:48 +00:00
parent 92262e1ff8
commit 4591991769

View File

@ -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];