diff options
Diffstat (limited to 'pyuno')
-rw-r--r-- | pyuno/zipcore/python.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyuno/zipcore/python.cxx b/pyuno/zipcore/python.cxx index c26d58c36fb8..7580e32789e3 100644 --- a/pyuno/zipcore/python.cxx +++ b/pyuno/zipcore/python.cxx @@ -31,7 +31,7 @@ #define MY_LENGTH(s) (sizeof (s) / sizeof *(s) - 1) #define MY_STRING(s) (s), MY_LENGTH(s) -wchar_t * encode(wchar_t * buffer, wchar_t const * text) { +static wchar_t * encode(wchar_t * buffer, wchar_t const * text) { *buffer++ = L'"'; std::size_t n = 0; for (;;) { |