From ba744647eae1eeee3a1c2c3d3a2b331fc1075b54 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sat, 8 Jun 2024 11:37:46 -0700 Subject: __attribute__: mark some functions with LAST_ARG_MUST_BE_NULL Some varargs functions that use NULL-terminated parameter list were missing __attributes__ ((sentinel)) aka LAST_ARG_MUST_BE_NULL. Add them. Signed-off-by: Junio C Hamano --- add-patch.c | 1 + 1 file changed, 1 insertion(+) (limited to 'add-patch.c') diff --git a/add-patch.c b/add-patch.c index 0997d4af73..b2fbd8cbf3 100644 --- a/add-patch.c +++ b/add-patch.c @@ -300,6 +300,7 @@ static void err(struct add_p_state *s, const char *fmt, ...) va_end(args); } +LAST_ARG_MUST_BE_NULL static void setup_child_process(struct add_p_state *s, struct child_process *cp, ...) { -- cgit v1.2.3