Fix typos

This commit is contained in:
Dimitris Apostolou 2022-11-25 22:37:52 +02:00
parent aead9db971
commit 73b9c0302b
No known key found for this signature in database
GPG key ID: 4B5D20E938204A8A
8 changed files with 15 additions and 15 deletions

View file

@ -84,7 +84,7 @@ const char *inet_ntop_xp(int af, const void *src, char *dst, socklen_t size)
default:
return NULL;
}
/* cannot direclty use &size because of strict aliasing rules */
/* cannot directly use &size because of strict aliasing rules */
return (WSAAddressToString((struct sockaddr *)&ss, sizeof(ss), NULL, dst, &s) == 0)? dst : NULL;
}