Cleanup: Remove an unnecessary scope operator

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1341 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
psychon
2009-01-23 13:50:53 +00:00
parent f4618594b6
commit fb54bc2fc4

View File

@@ -394,7 +394,7 @@ bool CFile::Lock(int iOperation) {
return false;
}
if (::flock(m_iFD, iOperation) != 0) {
if (flock(m_iFD, iOperation) != 0) {
return false;
}