From facb308ca987a806178d01316957fc3a7fcbda1b Mon Sep 17 00:00:00 2001 From: prozacx Date: Mon, 11 May 2009 21:17:38 +0000 Subject: [PATCH] Added a cast to stop the compilier from complaining about signed/unsigned mismatch git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1508 726aef4b-f618-498e-8847-2d620e286838 --- DCCSock.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DCCSock.cpp b/DCCSock.cpp index a1b4583b..f8d0b3cb 100644 --- a/DCCSock.cpp +++ b/DCCSock.cpp @@ -187,7 +187,7 @@ CFile* CDCCSock::OpenFile(bool bWrite) { // The DCC specs only allow file transfers with files smaller // than 4GiB (see ReadData()). off_t uFileSize = m_pFile->GetSize(); - if (uFileSize > 0xffffffff) { + if (uFileSize > (off_t) 0xffffffff) { delete m_pFile; m_pFile = NULL; m_pUser->PutModule(m_sModuleName, "DCC -> [" + m_sRemoteNick + "] - File too large (>4 GiB) [" + m_sLocalFile + "]");