diff options
Diffstat (limited to 'plugins/HistoryStats/src/_consts.h')
-rw-r--r-- | plugins/HistoryStats/src/_consts.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/HistoryStats/src/_consts.h b/plugins/HistoryStats/src/_consts.h index cd06f27fe3..d2dbf156c2 100644 --- a/plugins/HistoryStats/src/_consts.h +++ b/plugins/HistoryStats/src/_consts.h @@ -5,7 +5,7 @@ #if defined(HISTORYSTATS_CONST_DEFINE)
#define CONST_A(nam, txt) extern const char* nam = txt;
-#define CONST_W(nam, txt) extern const WCHAR* nam = L#txt;
+#define CONST_W(nam, txt) extern const WCHAR* nam = L##txt;
#else
#define CONST_A(nam, txt) extern const char* nam;
#define CONST_W(nam, txt) extern const WCHAR* nam;
|