From da2f117200f2933478d571d2d9e6d636dbbd0e4c Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Sun, 2 Jan 2011 16:59:15 +0000 Subject: [PATCH] fix preprocessor expression, closes #12822 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66523 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/strconv.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/strconv.cpp b/src/common/strconv.cpp index bf0b0923c7..e04e85b8fa 100644 --- a/src/common/strconv.cpp +++ b/src/common/strconv.cpp @@ -2183,7 +2183,7 @@ wxMBConv_iconv::wxMBConv_iconv(const char *name) { #if SIZEOF_WCHAR_T == 4 wxT("UCS-4"), -#elif SIZEOF_WCHAR_T = 2 +#elif SIZEOF_WCHAR_T == 2 wxT("UCS-2"), #endif NULL -- 2.47.2