From 4d98d19140299e201f6a11501eca4ae329990849 Mon Sep 17 00:00:00 2001 From: kichik Date: Thu, 19 May 2005 16:35:38 +0000 Subject: [PATCH] stringify the define itself, not its name git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4030 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/util.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/util.h b/Source/util.h index 3b79b463..7259fdde 100644 --- a/Source/util.h +++ b/Source/util.h @@ -35,7 +35,8 @@ size_t WCStrLen(const WCHAR* szwStr); size_t my_strftime(char *s, size_t max, const char *fmt, const struct tm *tm); -#define CONST_STR(x) #x +#define _CONST_STR(x) #x +#define CONST_STR(x) _CONST_STR(x) #ifndef __BIG_ENDIAN__ # define FIX_ENDIAN_INT32_INPLACE(x) (x)