mirror of
https://github.com/znc/znc.git
synced 2026-05-01 02:52:30 +02:00
Fix a bunch of conversion warnings #197
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
|
||||
CServer::CServer(const CString& sName, unsigned short uPort, const CString& sPass, bool bSSL) {
|
||||
m_sName = sName;
|
||||
m_uPort = (uPort) ? uPort : 6667;
|
||||
m_uPort = (uPort) ? uPort : (unsigned short)6667;
|
||||
m_sPass = sPass;
|
||||
m_bSSL = bSSL;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user