diff options
author | fcolin | 2007-02-01 13:05:34 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 13:05:34 +0000 |
commit | bc919bfe58f3dd881182082570f1c2424612734d (patch) | |
tree | 4698b275128c5544f7ab01ad02335589f821d9bd /Ivy | |
parent | fba86770a42e8aae5c76fe63136ad648978b53bd (diff) | |
download | ivy-cplusplus-bc919bfe58f3dd881182082570f1c2424612734d.zip ivy-cplusplus-bc919bfe58f3dd881182082570f1c2424612734d.tar.gz ivy-cplusplus-bc919bfe58f3dd881182082570f1c2424612734d.tar.bz2 ivy-cplusplus-bc919bfe58f3dd881182082570f1c2424612734d.tar.xz |
Utilisateur : Fcolin Date : 16/11/05 Heure : 9:54 Archivé dans $/Bus/Ivy Commentaire: 64 bits ports (vss 24)
Diffstat (limited to 'Ivy')
-rw-r--r-- | Ivy/ThreadedSocket.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ivy/ThreadedSocket.cxx b/Ivy/ThreadedSocket.cxx index 5654758..610f9b7 100644 --- a/Ivy/ThreadedSocket.cxx +++ b/Ivy/ThreadedSocket.cxx @@ -130,7 +130,7 @@ void CThreadedSocket::Close() //ASSERT(SOCKET_ERROR != closesocket(m_hSocket));
SOCKET temp = m_hSocket; // Thread ACK
m_hSocket = INVALID_SOCKET;
- TRACE( "CThreadedSocket::Close (reader=0x%0x) (writer=0x%0x)%\n", reader_id, writer_id );
+ TRACE( "CThreadedSocket::Close (reader=0x%0lx) (writer=0x%0lx)\n", reader_id, writer_id );
closesocket(temp); // close silently
//if ( thread ) // On fait de l'auto delete mais dans le cas de terminaison anormale l'object reste ????!!!
|