From 7c3095d6b71c410fd625ead797c78a0f5376904d Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Sat, 14 Mar 2015 07:10:10 +1300 Subject: [PATCH] i965/disasm: Mark format() as being printf-style. This allows us to get warnings from GCC when we mess up the format strings. Signed-off-by: Chris Forbes Reviewed-by: Matt Turner --- src/mesa/drivers/dri/i965/brw_disasm.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mesa/drivers/dri/i965/brw_disasm.c b/src/mesa/drivers/dri/i965/brw_disasm.c index 863a6b323ce..c92c534cc12 100644 --- a/src/mesa/drivers/dri/i965/brw_disasm.c +++ b/src/mesa/drivers/dri/i965/brw_disasm.c @@ -596,6 +596,9 @@ 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, ...) { -- 2.30.2