main: fix format string related warnings for log/debug printf functions
authorFelix Fietkau <nbd@nbd.name>
Sun, 20 Oct 2024 19:07:11 +0000 (21:07 +0200)
committerFelix Fietkau <nbd@nbd.name>
Sun, 20 Oct 2024 19:07:11 +0000 (21:07 +0200)
Signed-off-by: Felix Fietkau <nbd@nbd.name>
main.c
netifd.h

diff --git a/main.c b/main.c
index 4c4b1ff18dda766feb37c0fb06643e61d099c323..ac0fcfeeb3eb5f0340ca38071097031342f97bdc 100644 (file)
--- a/main.c
+++ b/main.c
@@ -89,7 +89,7 @@ netifd_delete_process(struct netifd_process *proc)
        close(proc->log.fd.fd);
 }
 
-static void
+static void __attribute__((format (printf, 1, 0)))
 netifd_udebug_vprintf(const char *format, va_list ap)
 {
        if (!udebug_buf_valid(&udb_log))
index a462abd88090deb9196ded22cd522d16d2422474..0c0537fbca9a3261b7d1912e51d85a96eff33e79 100644 (file)
--- a/netifd.h
+++ b/netifd.h
@@ -100,10 +100,12 @@ struct netifd_process {
        bool log_overflow;
 };
 
-void netifd_udebug_printf(const char *format, ...);
+void netifd_udebug_printf(const char *format, ...)
+       __attribute__((format (printf, 1, 2)));
 void netifd_udebug_config(struct udebug_ubus *ctx, struct blob_attr *data,
                          bool enabled);
-void netifd_log_message(int priority, const char *format, ...);
+void netifd_log_message(int priority, const char *format, ...)
+        __attribute__((format (printf, 2, 3)));
 
 int netifd_start_process(const char **argv, char **env, struct netifd_process *proc);
 void netifd_kill_process(struct netifd_process *proc);