summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-08-30 03:16:52 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-05-19 03:43:21 +0200
commita22e3305f13dd03520c957e1f19597f389e6cd3e (patch)
tree9e69f278e869e06f308eb5bce9a02c6d945bc082
parent61fe827e3bde3f6bf6369467bea2be2b23e81bbd (diff)
fix the build
Change-Id: I8af0c43542f7428f9ac74fee1079e9087820d15c
-rw-r--r--desktop/source/app/updater.cxx2
-rw-r--r--desktop/source/app/updater.hxx1
2 files changed, 1 insertions, 2 deletions
diff --git a/desktop/source/app/updater.cxx b/desktop/source/app/updater.cxx
index 6924a98c7235..1529036fe65b 100644
--- a/desktop/source/app/updater.cxx
+++ b/desktop/source/app/updater.cxx
@@ -501,7 +501,7 @@ void update_checker()
{
update_info aUpdateInfo = parse_response(response_body);
download_file(aUpdateInfo.aUpdateFile.aURL, aUpdateInfo.aUpdateFile.nSize, aUpdateInfo.aUpdateFile.aHash, "update.mar");
- CreateValidUpdateDir();
+ CreateValidUpdateDir(aUpdateInfo);
}
}
catch (const invalid_update_info&)
diff --git a/desktop/source/app/updater.hxx b/desktop/source/app/updater.hxx
index 410cc21b4de8..fab760516952 100644
--- a/desktop/source/app/updater.hxx
+++ b/desktop/source/app/updater.hxx
@@ -12,7 +12,6 @@
#include <rtl/ustring.hxx>
-void CreateValidUpdateDir();
void Update();
void update_checker();