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 --- attr.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'attr.h') diff --git a/attr.h b/attr.h index 127998ae01..afa33ce3be 100644 --- a/attr.h +++ b/attr.h @@ -190,6 +190,8 @@ struct attr_check { }; struct attr_check *attr_check_alloc(void); + +LAST_ARG_MUST_BE_NULL struct attr_check *attr_check_initl(const char *, ...); struct attr_check *attr_check_dup(const struct attr_check *check); -- cgit v1.3