diff --git a/network_server.h b/network_server.h --- a/network_server.h +++ b/network_server.h @@ -20,7 +20,10 @@ void NetworkServer_Tick(bool send_frame) void NetworkServerMonthlyLoop(void); void NetworkServerYearlyLoop(void); -static inline const char* GetPlayerIP(const NetworkClientInfo *ci) {return inet_ntoa(*(struct in_addr *)&ci->client_ip);} +static inline const char* GetPlayerIP(const NetworkClientInfo* ci) +{ + return inet_ntoa(*(const struct in_addr*)&ci->client_ip); +} #endif /* ENABLE_NETWORK */