diff options
| author | panaut0lordv <panaut0lordv@gmail.com> | 2009-05-06 19:30:34 +0200 |
|---|---|---|
| committer | panaut0lordv <panaut0lordv@gmail.com> | 2009-05-06 19:30:34 +0200 |
| commit | b3de9cdff7581ae8e81313ba7db466987f593fd4 (patch) | |
| tree | 25041dd695b303fe9239b517905c6fe54c7e6b1e /dep/src/sockets/TcpSocket.cpp | |
| parent | 8cd49be2ff898cffd06beb6168e90e46aa7b7a66 (diff) | |
Fix compile for gcc 4.4.
--HG--
branch : trunk
Diffstat (limited to 'dep/src/sockets/TcpSocket.cpp')
| -rw-r--r-- | dep/src/sockets/TcpSocket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dep/src/sockets/TcpSocket.cpp b/dep/src/sockets/TcpSocket.cpp index 9dab541eebe..1e2c5f7cb05 100644 --- a/dep/src/sockets/TcpSocket.cpp +++ b/dep/src/sockets/TcpSocket.cpp @@ -1012,7 +1012,7 @@ void TcpSocket::Sendf(const char *format, ...) #ifdef _WIN32 vsprintf(slask, format, ap); #else - vsnprintf(slask, 5000, format, ap); +DEB(vsnprintf(slask, 5000, format, ap);) #endif va_end(ap); Send( slask ); |
