Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
unix: fix aliasing warning in udp.c
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed Aug 23, 2012
1 parent a787a16 commit b81e67a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/udp.c
Expand Up @@ -375,7 +375,7 @@ static int uv__bind(uv_udp_t* handle,


static int uv__udp_maybe_deferred_bind(uv_udp_t* handle, int domain) {
struct sockaddr_storage taddr;
unsigned char taddr[sizeof(struct sockaddr_in6)];
socklen_t addrlen;

assert(domain == AF_INET || domain == AF_INET6);
Expand Down

0 comments on commit b81e67a

Please sign in to comment.