From: Vadim Zeitlin Date: Thu, 30 Oct 2008 00:32:24 +0000 (+0000) Subject: VC6 compilation fix after last change (thanks buildbot) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/22a9029e2306865655c8f9f36383929fc6381ea9 VC6 compilation fix after last change (thanks buildbot) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56588 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/sckipc.cpp b/src/common/sckipc.cpp index ff7ebbcc2a..50dcb26fef 100644 --- a/src/common/sckipc.cpp +++ b/src/common/sckipc.cpp @@ -680,7 +680,8 @@ void wxTCPEventHandler::Client_OnRequest(wxSocketEvent &event) const wxString topic = connection->m_topic; wxString item; - switch ( const int msg = streams->Read8() ) + const int msg = streams->Read8(); + switch ( msg ) { case IPC_EXECUTE: {