From 9dd4e5a9b0f6415081df752b9cad331009eb5853 Mon Sep 17 00:00:00 2001 From: Sebastian Hahn Date: Wed, 13 Jun 2012 16:51:56 +0200 Subject: [PATCH] Fix another clang compile warning We forgot this when we fixed 5969. --- changes/bug6141 | 4 ++++ src/common/util.h | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 changes/bug6141 diff --git a/changes/bug6141 b/changes/bug6141 new file mode 100644 index 0000000000..b95475c2df --- /dev/null +++ b/changes/bug6141 @@ -0,0 +1,4 @@ + o Minor bugfixes: + - Fix compilation warning with clang 3.1. Fixes bug 6141; bugfix on + 0.2.3.11-alpha. + diff --git a/src/common/util.h b/src/common/util.h index 527dc486f7..a2b196c88b 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -231,7 +231,8 @@ int tor_sscanf(const char *buf, const char *pattern, ...) void smartlist_add_asprintf(struct smartlist_t *sl, const char *pattern, ...) CHECK_PRINTF(2, 3); void smartlist_add_vasprintf(struct smartlist_t *sl, const char *pattern, - va_list args); + va_list args) + CHECK_PRINTF(2, 0); int hex_decode_digit(char c); void base16_encode(char *dest, size_t destlen, const char *src, size_t srclen);