Add both format string and ((noreturn)) attributes to the version of die() used in the test programs in doc/platform-requirements. As well as potentially catching problems in format strings, this means that the compiler and static checkers can properly reason about the fact that it will exit, preventing bogus warnings. Signed-off-by: David Gibson <david(a)gibson.dropbear.id.au> --- doc/platform-requirements/common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/platform-requirements/common.h b/doc/platform-requirements/common.h index 8844b1ed..e85fc2b5 100644 --- a/doc/platform-requirements/common.h +++ b/doc/platform-requirements/common.h @@ -15,6 +15,7 @@ #include <stdio.h> #include <stdlib.h> +__attribute__((format(printf, 1, 2), noreturn)) static inline void die(const char *fmt, ...) { va_list ap; -- 2.49.0