Skip to content

Commit

Permalink
fix warning on android build
Browse files Browse the repository at this point in the history
  • Loading branch information
radkesvat committed Aug 16, 2024
1 parent c9cb7a0 commit ea30935
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tunnels/client/mux/mux_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ static mux_client_con_state_t *grabConnection(tunnel_t *self, tid_t tid)
state->threadlocal_cons[tid].round_index = 0;
}

if (vec_cons_size(vector) <= i)
if ((unsigned int)vec_cons_size(vector) <= i)
{
mux_client_con_state_t *con = createMainConnection(self, tid);
vec_cons_push(vector, con);
Expand Down

0 comments on commit ea30935

Please sign in to comment.