mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Make last_tick unsigned.
This commit is contained in:
parent
1b7f568562
commit
b6037a182f
@ -1,3 +1,8 @@
|
||||
2005-07-04 Hrvoje Niksic <hniksic@xemacs.org>
|
||||
|
||||
* connect.c (LAZY_RETRIEVE_INFO): Make last_tick unsigned to match
|
||||
transport_map_modified_tick.
|
||||
|
||||
2005-07-04 Hrvoje Niksic <hniksic@xemacs.org>
|
||||
|
||||
* config-post.h (alloca): Updated declaration to not enumerate all
|
||||
|
@ -797,7 +797,8 @@ fd_transport_context (int fd)
|
||||
|
||||
#define LAZY_RETRIEVE_INFO(info) do { \
|
||||
static struct transport_info *last_info; \
|
||||
static int last_fd = -1, last_tick; \
|
||||
static int last_fd = -1; \
|
||||
static unsigned int last_tick; \
|
||||
if (!transport_map) \
|
||||
info = NULL; \
|
||||
else if (last_fd == fd && last_tick == transport_map_modified_tick) \
|
||||
|
Loading…
Reference in New Issue
Block a user