Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-05-31 09:03:28 +0000
committerStijn Buys <ingar@osirion.org>2008-05-31 09:03:28 +0000
commit4b527153ccf2a2830e38038ce4cf06ccc764d310 (patch)
treee52cf44100bf894f435d6e726f45c680f19a0826 /src/core/netconnection.h
parentda0715c2648b662892a72e32e8528a08608d0d0b (diff)
fix zlib type issues on 32-bit systems
Diffstat (limited to 'src/core/netconnection.h')
-rw-r--r--src/core/netconnection.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/netconnection.h b/src/core/netconnection.h
index ddc70f0..d3c6cf7 100644
--- a/src/core/netconnection.h
+++ b/src/core/netconnection.h
@@ -107,7 +107,7 @@ private:
bool receive_compressed;
size_t received_compressed_size;
- size_t compressed_size;
+ unsigned long compressed_size;
char zrecvbuf[BLOCKSIZE];
};