summaryrefslogtreecommitdiff
path: root/network.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-12-21 16:56:43 +0000
committertruelight <truelight@openttd.org>2004-12-21 16:56:43 +0000
commit07d0fd6719cda6cf7e214dec3c7824ab7895f54a (patch)
treefe01f0ed40fd9f25a9b69c96c1c276a5e479ebd5 /network.c
parent9044110096c8b4af23005f4f7349e62c03be0207 (diff)
downloadopenttd-07d0fd6719cda6cf7e214dec3c7824ab7895f54a.tar.xz
(svn r1202) -Fix: removed unused variable
Diffstat (limited to 'network.c')
-rw-r--r--network.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/network.c b/network.c
index 5f885892a..0d1daffe9 100644
--- a/network.c
+++ b/network.c
@@ -821,7 +821,6 @@ void NetworkAddServer(const byte *b)
{
if (*b != '\0') {
NetworkGameList *item;
- uint i;
const byte *port = NULL;
const byte *player = NULL;
byte host[NETWORK_HOSTNAME_LENGTH];
@@ -842,7 +841,7 @@ void NetworkAddServer(const byte *b)
}
}
-/* Generates the list of manually added hosts from NetworkGameList and
+/* Generates the list of manually added hosts from NetworkGameList and
* dumps them into the array _network_host_list. This array is needed
* by the function that generates the config file. */
void NetworkRebuildHostList()