mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
Fix a signed/unsigned comparison warning on 32-bit
This commit is contained in:
parent
b7567a6282
commit
e55c1412c1
@ -14,8 +14,8 @@ typedef enum consdiff_status_t {
|
||||
} consdiff_status_t;
|
||||
|
||||
typedef struct consdiff_cfg_t {
|
||||
uint32_t cache_max_age_hours;
|
||||
uint32_t cache_max_num;
|
||||
int32_t cache_max_age_hours;
|
||||
int32_t cache_max_num;
|
||||
} consdiff_cfg_t;
|
||||
|
||||
struct consensus_cache_entry_t; // from conscache.h
|
||||
|
Loading…
Reference in New Issue
Block a user