summaryrefslogtreecommitdiff
path: root/protocols/NewsAggregator/Src
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/NewsAggregator/Src')
-rw-r--r--protocols/NewsAggregator/Src/Utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/NewsAggregator/Src/Utils.cpp b/protocols/NewsAggregator/Src/Utils.cpp
index 27c6dce34f..cad76293e0 100644
--- a/protocols/NewsAggregator/Src/Utils.cpp
+++ b/protocols/NewsAggregator/Src/Utils.cpp
@@ -322,7 +322,7 @@ time_t __stdcall DateToUnixTime(TCHAR* stamp, BOOL FeedType)
// skip '-' chars
int si = 0, sj = 0;
while (1) {
- if ( p[si] == _T('-') )
+ if ( p[si] == _T('-'))
si++;
else
if ( !( p[sj++] = p[si++] ))