summaryrefslogtreecommitdiff
path: root/updater/socket.h
diff options
context:
space:
mode:
Diffstat (limited to 'updater/socket.h')
-rw-r--r--updater/socket.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/updater/socket.h b/updater/socket.h
index 7c5aadb..5879476 100644
--- a/updater/socket.h
+++ b/updater/socket.h
@@ -7,7 +7,7 @@
#include "popups.h"
-#include "zlib123/contrib/minizip/munzip.h"
+#include "zbin/minizip/munzip.h"
// gets a file from a url, puts in in the temp_folder and names it after the plugin_name (same extension as url)
// it will automatically unzip a zip file, putting the contents in the temp_folder and using the names from the archive
@@ -17,6 +17,6 @@ bool GetFile(char *url, TCHAR *temp_folder, char *plugin_name, char *version, bo
// check the xml backend data or version URL (depending on whether the plugin is on the file listing) to see if we need an update
// returns new version string (which you must free) and sets beta to indicate where update should be retreived from (i.e. if
// beta url is enabled, will return true in beta unless the non-beta version is higher)
-char *UpdateRequired(UpdateInternal *update_internal, bool *beta);
+char *UpdateRequired(UpdateInternal &update_internal, bool *beta);
#endif