Skip to content
Snippets Groups Projects
Commit e9308a83 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

compilation fix: signed/unsigned comparison

parent 41efe22c
Branches
Tags
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment