summaryrefslogtreecommitdiff
path: root/src/net/download.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/download.cpp')
-rw-r--r--src/net/download.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/net/download.cpp b/src/net/download.cpp
index 38b8d2873..0f25d56d8 100644
--- a/src/net/download.cpp
+++ b/src/net/download.cpp
@@ -26,6 +26,7 @@
#include "logger.h"
#include "main.h"
+#include "utils/files.h"
#include "utils/sdlhelper.h"
#include <curl/curl.h>
@@ -364,12 +365,7 @@ int Download::downloadThread(void *ptr)
if (!d->mOptions.cancel)
{
::remove(d->mFileName.c_str());
-#if defined __native_client__
- Files::renameFile(
-#else
- ::rename(
-#endif
- outFilename.c_str(), d->mFileName.c_str());
+ Files::renameFile(outFilename, d->mFileName);
// Check if we can open it and no errors were encountered
// during renaming