diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2009-05-26 20:31:04 -0400 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2009-05-26 20:31:04 -0400 |
commit | 50c8c40373e1bdf5c9676208ba16e214828f6365 (patch) | |
tree | 0c72d3bb7e423bb1c192bf61a5420ee968761de5 | |
parent | a11a9dbd6db6632073ec5560ec473b76ed9c5536 (diff) |
Fix for 276e290accca (minor utf8 refactor)
-rw-r--r-- | src/utf8.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utf8.hh b/src/utf8.hh index eaf82b6f..e2f9f9a4 100644 --- a/src/utf8.hh +++ b/src/utf8.hh @@ -13,7 +13,7 @@ extern "C" { * "used to replace an incoming character whose value is unknown or otherwise * unrepresentable in Unicode" */ -const char utf8_replacement_char[] = "\xEF\xBF\xBD"; +static const char utf8_replacement_char[] = "\xEF\xBF\xBD"; uint_t a_Utf8_end_of_char(const char *str, uint_t i); uint_t a_Utf8_decode(const char*, const char* end, int* len); |