diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-07-28 13:17:59 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-07-28 13:17:59 -0700 |
commit | dd6d3c90eeff56770f2f4b88fb61cc44bf01d890 (patch) | |
tree | 55b66b254ad151323682e834c8eef5cf55eac6d5 /t/helper | |
parent | Merge branch 'jk/log-decorate-optim' (diff) | |
parent | advice.h: add missing __attribute__((format)) & fix usage (diff) | |
download | tgif-dd6d3c90eeff56770f2f4b88fb61cc44bf01d890.tar.xz |
Merge branch 'ab/attribute-format'
Many "printf"-like helper functions we have have been annotated
with __attribute__() to catch placeholder/parameter mismatches.
* ab/attribute-format:
advice.h: add missing __attribute__((format)) & fix usage
*.h: add a few missing __attribute__((format))
*.c static functions: add missing __attribute__((format))
sequencer.c: move static function to avoid forward decl
*.c static functions: don't forward-declare __attribute__
Diffstat (limited to 't/helper')
-rw-r--r-- | t/helper/test-advise.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/helper/test-advise.c b/t/helper/test-advise.c index a7043df1d3..cb881139f7 100644 --- a/t/helper/test-advise.c +++ b/t/helper/test-advise.c @@ -16,7 +16,7 @@ int cmd__advise_if_enabled(int argc, const char **argv) * selected here and in t0018 where this command is being * executed. */ - advise_if_enabled(ADVICE_NESTED_TAG, argv[1]); + advise_if_enabled(ADVICE_NESTED_TAG, "%s", argv[1]); return 0; } |