diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-12-16 15:27:18 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-12-16 15:27:18 -0500 |
commit | df5c81fec0f25a684f1f7e68e80abcde5402d3ef (patch) | |
tree | e0dd0edd798a781ed461e8fbb549b9357498223b /src/lib/log | |
parent | bd11fb10962f5b6e7d51ff5a0e6263ad39d4d184 (diff) | |
parent | 1b619a627ca1ee11d1680dc56e90e9fc1af2ddb5 (diff) | |
download | tor-df5c81fec0f25a684f1f7e68e80abcde5402d3ef.tar.gz tor-df5c81fec0f25a684f1f7e68e80abcde5402d3ef.zip |
Merge branch 'bug32765_041' into bug32771_042
Diffstat (limited to 'src/lib/log')
-rw-r--r-- | src/lib/log/util_bug.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/log/util_bug.h b/src/lib/log/util_bug.h index c3141754de..030bfa2cc9 100644 --- a/src/lib/log/util_bug.h +++ b/src/lib/log/util_bug.h @@ -242,10 +242,12 @@ void tor_assertion_failed_(const char *fname, unsigned int line, const char *func, const char *expr, - const char *fmt, ...); + const char *fmt, ...) + CHECK_PRINTF(5,6); void tor_bug_occurred_(const char *fname, unsigned int line, const char *func, const char *expr, - int once, const char *fmt, ...); + int once, const char *fmt, ...) + CHECK_PRINTF(6,7); void tor_abort_(void) ATTR_NORETURN; |