From: Sebastian Hahn Date: Wed, 9 Mar 2011 15:39:04 +0000 (+0100) Subject: Fix a compile warning when using clang X-Git-Tag: tor-0.2.2.24-alpha~4^2~20^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=30b3f0cdb148f85330e2c93ebb1c00f3cfc8655a;p=thirdparty%2Ftor.git Fix a compile warning when using clang Issue noticed by Steven Murdoch; fixes bug 2689. The cast didn't do anything, and we don't need to look at the return value of the function here. --- diff --git a/src/or/rendclient.c b/src/or/rendclient.c index af91099fcb..51306b3dc1 100644 --- a/src/or/rendclient.c +++ b/src/or/rendclient.c @@ -412,7 +412,7 @@ directory_get_from_hs_dir(const char *desc_id, const rend_data_t *rend_query) tor_assert(rend_query); /* Determine responsible dirs. Even if we can't get all we want, * work with the ones we have. If it's empty, we'll notice below. */ - (int) hid_serv_get_responsible_directories(responsible_dirs, desc_id); + hid_serv_get_responsible_directories(responsible_dirs, desc_id); base32_encode(desc_id_base32, sizeof(desc_id_base32), desc_id, DIGEST_LEN);