From 4505d08aaf06c74da2a7c1106e3181dee38b01d9 Mon Sep 17 00:00:00 2001 From: Memphiz Date: Mon, 30 Apr 2012 19:03:15 +0200 Subject: [fix] - parentheses warning - thx cptspiff --- xbmc/filesystem/NFSFile.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xbmc/filesystem/NFSFile.cpp b/xbmc/filesystem/NFSFile.cpp index 0a8ba94739..6d2e0e3f2b 100644 --- a/xbmc/filesystem/NFSFile.cpp +++ b/xbmc/filesystem/NFSFile.cpp @@ -263,9 +263,9 @@ bool CNfsConnection::Connect(const CURL& url, CStdString &relativePath) resolveHost(url); ret = splitUrlIntoExportAndPath(url, exportPath, relativePath); - if(ret && (!exportPath.Equals(m_exportPath,true) || - !url.GetHostName().Equals(m_hostName,false)) || - (XbmcThreads::SystemClockMillis() - m_lastAccessedTime) > CONTEXT_TIMEOUT) + if( (ret && (!exportPath.Equals(m_exportPath,true)) || + !url.GetHostName().Equals(m_hostName,false)) || + (XbmcThreads::SystemClockMillis() - m_lastAccessedTime) > CONTEXT_TIMEOUT ) { int contextRet = getContextForExport(url.GetHostName() + exportPath); -- cgit v1.2.3