Fix some ICC warnings found by Kuja

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@846 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
psychon
2007-09-27 21:00:08 +00:00
parent fa7a588c81
commit 5993255ac3
3 changed files with 4 additions and 4 deletions

View File

@@ -159,7 +159,7 @@ public:
}
if (!sPort.empty()) {
m_uPort = sPort.ToUInt();
m_uPort = sPort.ToUShort();
}
CWebAdminSock* pListenSock = new CWebAdminSock(this);
@@ -213,7 +213,7 @@ public:
}
private:
unsigned int m_uPort;
unsigned short m_uPort;
CString m_sSkinName;
set<CWebAdminSock*> m_spSocks;
CString m_sListenHost;