Skip to content

Commit

Permalink
Revert "Add missing return in socket_cmp_addresses"
Browse files Browse the repository at this point in the history
This reverts commit 07085fa.
  • Loading branch information
matthiasvp committed Jul 9, 2016
1 parent d73fc9c commit aa63b09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stack/pico_socket.c
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ static int socket_cmp_addresses(struct pico_socket *a, struct pico_socket *b)
if (ret == 0)
ret = socket_cmp_remotehost(a, b);

return ret;
return 0;
}

static int socket_cmp(void *ka, void *kb)
Expand Down

0 comments on commit aa63b09

Please sign in to comment.