Fix some "value never used" warnings with gcc 4.6.1

This commit is contained in:
Nick Mathewson 2011-10-03 12:49:02 -04:00
parent 2b768479e4
commit 39c0cf7ca4

View File

@ -1143,6 +1143,10 @@ reply_parse(struct evdns_base *base, u8 *packet, int length) {
GET32(retry);
GET32(expire);
GET32(minimum);
(void)expire;
(void)retry;
(void)refresh;
(void)serial;
ttl_r = MIN(ttl_r, ttl);
ttl_r = MIN(ttl_r, minimum);
} else {