mirror of
https://github.com/znc/znc.git
synced 2026-05-03 12:02:30 +02:00
Fix a bunch of conversion warnings #197
This commit is contained in:
@@ -1232,7 +1232,7 @@ void CIRCSock::SendAltNick(const CString& sBadNick) {
|
||||
// nick we sent last. If sBadNick is shorter than that, we assume the
|
||||
// server truncated our nick.
|
||||
if (sBadNick.length() < sLastNick.length())
|
||||
m_uMaxNickLen = sBadNick.length();
|
||||
m_uMaxNickLen = (unsigned int)sBadNick.length();
|
||||
|
||||
unsigned int uMax = m_uMaxNickLen;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user