1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-21 13:39:09 +00:00

(svn r17169) -Codechange: apply coding style to some for statements

This commit is contained in:
smatz
2009-08-14 17:14:04 +00:00
parent c5533ae470
commit 2d3ddab7ca
4 changed files with 4 additions and 4 deletions

View File

@@ -117,7 +117,7 @@ static void NetworkFindBroadcastIPsInternal(NetworkAddressList *broadcast) // Wi
int num = 2;
INTERFACE_INFO *ifo = CallocT<INTERFACE_INFO>(num);
for(;;) {
for (;;) {
if (WSAIoctl(sock, SIO_GET_INTERFACE_LIST, NULL, 0, ifo, num * sizeof(*ifo), &len, NULL, NULL) == 0) break;
free(ifo);
if (WSAGetLastError() != WSAEFAULT) {