aboutsummaryrefslogtreecommitdiff
path: root/C/Util/7zipInstall
diff options
context:
space:
mode:
Diffstat (limited to 'C/Util/7zipInstall')
-rw-r--r--C/Util/7zipInstall/7zipInstall.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/C/Util/7zipInstall/7zipInstall.c b/C/Util/7zipInstall/7zipInstall.c
index 00d0f41..2649734 100644
--- a/C/Util/7zipInstall/7zipInstall.c
+++ b/C/Util/7zipInstall/7zipInstall.c
@@ -1,5 +1,5 @@
1/* 7zipInstall.c - 7-Zip Installer 1/* 7zipInstall.c - 7-Zip Installer
22021-09-02 : Igor Pavlov : Public domain */ 22022-07-15 : Igor Pavlov : Public domain */
3 3
4#include "Precomp.h" 4#include "Precomp.h"
5 5
@@ -22,6 +22,10 @@
22 22
23#include "resource.h" 23#include "resource.h"
24 24
25#if defined(__GNUC__) && (__GNUC__ >= 8)
26 #pragma GCC diagnostic ignored "-Wcast-function-type"
27#endif
28
25#define LLL_(quote) L##quote 29#define LLL_(quote) L##quote
26#define LLL(quote) LLL_(quote) 30#define LLL(quote) LLL_(quote)
27 31
@@ -70,7 +74,7 @@ static LPCWSTR const k_Reg_Software_7zip = L"Software\\7-Zip";
70 #endif 74 #endif
71#endif 75#endif
72 76
73#define k_7zip_with_Ver k_7zip_with_Ver_base k_Postfix 77#define k_7zip_with_Ver k_7zip_with_Ver_base k_Postfix
74 78
75 79
76static LPCWSTR const k_7zip_with_Ver_str = k_7zip_with_Ver; 80static LPCWSTR const k_7zip_with_Ver_str = k_7zip_with_Ver;