Message ID | 20221101114458.25756-4-philmd@linaro.org |
---|---|
State | Superseded |
Headers | show |
Series | disas/nanomips: Format string fixes | expand |
Am 01.11.22 um 12:44 schrieb Philippe Mathieu-Daudé: > Suggested-by: Stefan Weil <sw@weilnetz.de> > Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> > --- > disas/nanomips.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/disas/nanomips.c b/disas/nanomips.c > index e4b21e7c45..3f45447292 100644 > --- a/disas/nanomips.c > +++ b/disas/nanomips.c > @@ -95,7 +95,7 @@ typedef struct Pool { > #define IMGASSERTONCE(test) > > > -static char *img_format(const char *format, ...) > +static char * G_GNUC_PRINTF(1, 2) img_format(const char *format, ...) > { > char *buffer; > va_list args; Reviewed-by: Stefan Weil <sw@weilnetz.de>
diff --git a/disas/nanomips.c b/disas/nanomips.c index e4b21e7c45..3f45447292 100644 --- a/disas/nanomips.c +++ b/disas/nanomips.c @@ -95,7 +95,7 @@ typedef struct Pool { #define IMGASSERTONCE(test) -static char *img_format(const char *format, ...) +static char * G_GNUC_PRINTF(1, 2) img_format(const char *format, ...) { char *buffer; va_list args;
Suggested-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> --- disas/nanomips.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)