diff --git a/src/system/httptool.cpp b/src/system/httptool.cpp index aaa8626fe..72314f10d 100644 --- a/src/system/httptool.cpp +++ b/src/system/httptool.cpp @@ -58,7 +58,7 @@ int CHTTPTool::show_progress( void *clientp, double dltotal, double dlnow, doubl return 0; } //#define DEBUG -bool CHTTPTool::downloadFile(const std::string & URL, const char * const downloadTarget, int globalProgressEnd,/*NI*/int connecttimeout,/*NI*/int timeout) +bool CHTTPTool::downloadFile(const std::string & URL, const char * const downloadTarget, int globalProgressEnd, int connecttimeout, int timeout) //NI { CURL *curl; CURLcode res; diff --git a/src/system/httptool.h b/src/system/httptool.h index a414d683b..93e04a4f2 100644 --- a/src/system/httptool.h +++ b/src/system/httptool.h @@ -51,7 +51,7 @@ class CHTTPTool CHTTPTool(); void setStatusViewer( CProgressWindow* statusview ); - bool downloadFile( const std::string & URL, const char * const downloadTarget, int globalProgressEnd=-1,/*NI*/int connecttimeout=10,/*NI*/int timeout=1800); + bool downloadFile( const std::string & URL, const char * const downloadTarget, int globalProgressEnd=-1, int connecttimeout=10, int timeout=1800); //NI };