mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 14:51:11 +01:00
compilation fix: signed/unsigned comparison
This commit is contained in:
parent
41efe22c03
commit
e9308a8341
1 changed files with 2 additions and 1 deletions
|
@ -1411,7 +1411,8 @@ rend_data_dup(const rend_data_t *data)
|
|||
static int
|
||||
compute_desc_id(rend_data_t *rend_data)
|
||||
{
|
||||
int ret, replica;
|
||||
int ret;
|
||||
unsigned replica;
|
||||
time_t now = time(NULL);
|
||||
|
||||
tor_assert(rend_data);
|
||||
|
|
Loading…
Add table
Reference in a new issue