blob: ce2caebc9eabc39cb0162e054d357850fa0b125b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
diff -ur nzbget-0.2.3-orig/ArticleDownloader.cpp nzbget-0.2.3/ArticleDownloader.cpp
--- nzbget-0.2.3-orig/ArticleDownloader.cpp 2006-05-02 01:18:35.127138980 +0000
+++ nzbget-0.2.3/ArticleDownloader.cpp 2006-05-02 01:18:50.731853304 +0000
@@ -184,7 +184,7 @@
line = pConnection->ReadLine();
// Have we encountered a timeout?
- if( (int)line == EOF )
+ if( (long)line == EOF )
{
perror( "pConnection->ReadLine() encountered error" );
m_pJob->SetStatus(JOBSTATUS_FAILED);
|