From fda2f85e587cc9692ad19c396a170fdfde740476 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 27 Jun 2021 23:23:40 -0400 Subject: 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(-) (limited to 'sim/common') diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 291d093..6926fd3 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,5 +1,10 @@ 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 " ". 2021-06-29 Mike Frysinger diff --git a/sim/common/sim-io.h b/sim/common/sim-io.h index a78e8f5..9536e4b 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, -- cgit v1.1