diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-13 09:53:58 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-18 17:19:15 +0100 |
commit | 18e972c2d993994ea2b80f13cf2013397af1c67f (patch) | |
tree | 559ebe540855babed7f790e01baafd07141a3ef9 /setup_native/source | |
parent | 4c03c36f739bdfebed5d80bd9ec9cb5928007173 (diff) |
-Werror,-Wwritable-strings
Change-Id: I016006135012699b4e14e869c036f4d295e5cde2
Diffstat (limited to 'setup_native/source')
-rw-r--r-- | setup_native/source/win32/customactions/regactivex/regactivex.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup_native/source/win32/customactions/regactivex/regactivex.cxx b/setup_native/source/win32/customactions/regactivex/regactivex.cxx index c2f690fbf724..25b6f2c8fa86 100644 --- a/setup_native/source/win32/customactions/regactivex/regactivex.cxx +++ b/setup_native/source/win32/customactions/regactivex/regactivex.cxx @@ -41,7 +41,7 @@ typedef int ( __stdcall * DllNativeRegProc ) ( int, BOOL, BOOL, const char* ); typedef int ( __stdcall * DllNativeUnregProc ) ( int, BOOL, BOOL ); -BOOL UnicodeEquals( wchar_t* pStr1, wchar_t* pStr2 ) +BOOL UnicodeEquals( wchar_t const * pStr1, wchar_t const * pStr2 ) { if ( pStr1 == NULL && pStr2 == NULL ) return TRUE; |