Use the new FORMATPRINTF macro (in git-compat-util.h) to declare the gcc function attribute 'format printf' Signed-off-by: Elia Pinto <gitter.spiros@xxxxxxxxx> --- argv-array.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/argv-array.h b/argv-array.h index a2fa0aa..e303dfd 100644 --- a/argv-array.h +++ b/argv-array.h @@ -13,7 +13,7 @@ struct argv_array { void argv_array_init(struct argv_array *); void argv_array_push(struct argv_array *, const char *); -__attribute__((format (printf,2,3))) +FORMATPRINTF(2,3) void argv_array_pushf(struct argv_array *, const char *fmt, ...); LAST_ARG_MUST_BE_NULL void argv_array_pushl(struct argv_array *, ...); -- 2.5.0 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html