diff options
author | Memphiz <memphis@machzwo.de> | 2012-04-30 19:03:15 +0200 |
---|---|---|
committer | Memphiz <memphis@machzwo.de> | 2012-04-30 19:03:15 +0200 |
commit | 4505d08aaf06c74da2a7c1106e3181dee38b01d9 (patch) | |
tree | 0f2d3d48b79bbfa76a886be020e1434caca0da1f | |
parent | 761500fcbad63d0da351c26f35b2c92312a45de0 (diff) |
[fix] - parentheses warning - thx cptspiffFrodo_alpha1
-rw-r--r-- | xbmc/filesystem/NFSFile.cpp | 6 |
1 files 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); |