From fda2f85e587cc9692ad19c396a170fdfde740476 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 27 Jun 2021 23:23:40 -0400 Subject: [PATCH] sim: io: add printf attributes to vprintf funcs too The compiler can still do basic format checks with vprintf style funcs, so add the printf attribute to these. --- sim/common/ChangeLog | 5 +++++ sim/common/sim-io.h | 6 ++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 291d093b225..6926fd3438b 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,8 @@ +2021-06-29 Mike Frysinger + + * sim-io.h (sim_io_vprintf): Add ATTRIBUTE_PRINTF. + (sim_io_evprintf): Likewise. + 2021-06-29 Mike Frysinger * sim-io.c (sim_io_error): Change "" to " ". diff --git a/sim/common/sim-io.h b/sim/common/sim-io.h index a78e8f59d54..9536e4b587a 100644 --- a/sim/common/sim-io.h +++ b/sim/common/sim-io.h @@ -65,13 +65,15 @@ void sim_io_printf (SIM_DESC sd, const char *fmt, ...) ATTRIBUTE_PRINTF (2, 3); -void sim_io_vprintf (SIM_DESC sd, const char *fmt, va_list ap); +void sim_io_vprintf (SIM_DESC sd, const char *fmt, va_list ap) + ATTRIBUTE_PRINTF (2, 0); void sim_io_eprintf (SIM_DESC sd, const char *fmt, ...) ATTRIBUTE_PRINTF (2, 3); -void sim_io_evprintf (SIM_DESC sd, const char *fmt, va_list ap); +void sim_io_evprintf (SIM_DESC sd, const char *fmt, va_list ap) + ATTRIBUTE_PRINTF (2, 0); void sim_io_error (SIM_DESC sd, const char *fmt, -- 2.30.2