diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-11-22 16:28:14 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-11-22 16:28:14 -0800 |
commit | 82f05d5dd7ec54c4cd30f016c4380b21245e0d63 (patch) | |
tree | c81b46f0c28579c06b886074149e9762921a3ddc /cache.h | |
parent | c50230f75109677d7adf0bd94f99d17f35a519a6 (diff) | |
parent | 28bea9e53481fddcb12e63d8c049f0ff2917a573 (diff) | |
download | git-82f05d5dd7ec54c4cd30f016c4380b21245e0d63.tar.gz git-82f05d5dd7ec54c4cd30f016c4380b21245e0d63.tar.xz |
Merge branch 'tc/format-attribute'
* tc/format-attribute:
Check the format of more printf-type functions
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -967,7 +967,9 @@ extern void *alloc_object_node(void); extern void alloc_report(void); /* trace.c */ +__attribute__((format (printf, 1, 2))) extern void trace_printf(const char *format, ...); +__attribute__((format (printf, 2, 3))) extern void trace_argv_printf(const char **argv, const char *format, ...); /* convert.c */ |