diff options
author | rubidium <rubidium@openttd.org> | 2008-04-18 04:37:06 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-04-18 04:37:06 +0000 |
commit | 9d8fa486af824039fae197212d83365242511da5 (patch) | |
tree | 31dd8caca4df193a4a2d7a3cd1ef2974e1a2b5a0 /src/network/network.cpp | |
parent | 6daaf0fc5565599f9c87b431a69cdcbb91ed74ac (diff) | |
download | openttd-9d8fa486af824039fae197212d83365242511da5.tar.xz |
(svn r12761) -Codechange: lots of minor whitespace coding style fixes around operators.
Diffstat (limited to 'src/network/network.cpp')
-rw-r--r-- | src/network/network.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/network.cpp b/src/network/network.cpp index bbb6bb833..8ec1a2a8a 100644 --- a/src/network/network.cpp +++ b/src/network/network.cpp @@ -391,7 +391,7 @@ static void NetworkFindIPs() uint32 netmask; fields = sscanf(*output, "%u: %hhu.%hhu.%hhu.%hhu, netmask %hhu.%hhu.%hhu.%hhu%n", - &n, &i1,&i2,&i3,&i4, &j1,&j2,&j3,&j4, &read); + &n, &i1, &i2, &i3, &i4, &j1, &j2, &j3, &j4, &read); read += 1; if (fields != 9) { break; |