mirror of
https://github.com/cuberite/libevent.git
synced 2025-09-10 21:10:06 -04:00
Fix some "value never used" warnings with gcc 4.6.1
This commit is contained in:
parent
2b768479e4
commit
39c0cf7ca4
4
evdns.c
4
evdns.c
@ -1143,6 +1143,10 @@ reply_parse(struct evdns_base *base, u8 *packet, int length) {
|
|||||||
GET32(retry);
|
GET32(retry);
|
||||||
GET32(expire);
|
GET32(expire);
|
||||||
GET32(minimum);
|
GET32(minimum);
|
||||||
|
(void)expire;
|
||||||
|
(void)retry;
|
||||||
|
(void)refresh;
|
||||||
|
(void)serial;
|
||||||
ttl_r = MIN(ttl_r, ttl);
|
ttl_r = MIN(ttl_r, ttl);
|
||||||
ttl_r = MIN(ttl_r, minimum);
|
ttl_r = MIN(ttl_r, minimum);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user