summaryrefslogtreecommitdiff
path: root/core/network.c
diff options
context:
space:
mode:
authorMaxim Biro <nurupo.contributions@gmail.com>2013-07-29 20:47:12 -0400
committerMaxim Biro <nurupo.contributions@gmail.com>2013-07-29 20:47:12 -0400
commit261f365e55d4711372f7053667aa368788eabea1 (patch)
tree20bfe2e0487ab4511ed976477a6e9099bbc8288d /core/network.c
parent1d8f6e94e73c569f09a2bc8bd008d0ceb2e5b8cc (diff)
Fixed function signature
Diffstat (limited to 'core/network.c')
-rw-r--r--core/network.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/network.c b/core/network.c
index aa16bda9..ced08207 100644
--- a/core/network.c
+++ b/core/network.c
@@ -169,7 +169,7 @@ void shutdown_networking()
169 address should represent IPv4, IPv6 or a hostname 169 address should represent IPv4, IPv6 or a hostname
170 on success returns a data in network byte order that can be used to set IP.i or IP_Port.ip.i 170 on success returns a data in network byte order that can be used to set IP.i or IP_Port.ip.i
171 on failure returns -1 */ 171 on failure returns -1 */
172int resolve_addr(char *address) 172int resolve_addr(const char *address)
173{ 173{
174 struct addrinfo hints; 174 struct addrinfo hints;
175 memset(&hints, 0, sizeof(hints)); 175 memset(&hints, 0, sizeof(hints));