diff options
author | Bruno Haible <bruno@clisp.org> | 2007-01-28 01:49:16 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2007-01-28 01:49:16 +0000 |
commit | 6f18b53d9342b4e55364e0c081928f65b5d7ed79 (patch) | |
tree | fe3676c36c02db764a84c861cb896ac42124a374 /lib/unistr/u8-to-u16.c | |
parent | b7555a5c3e1455ce867da80df9f56b8428a480ed (diff) | |
download | gnulib-6f18b53d9342b4e55364e0c081928f65b5d7ed79.tar.gz |
Rename utf8-ucs4-safe -> utf8-ucs4, u8_mbtouc_safe -> u8_mbtouc.
Diffstat (limited to 'lib/unistr/u8-to-u16.c')
-rw-r--r-- | lib/unistr/u8-to-u16.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unistr/u8-to-u16.c b/lib/unistr/u8-to-u16.c index ac4211b280..734c25b9d1 100644 --- a/lib/unistr/u8-to-u16.c +++ b/lib/unistr/u8-to-u16.c @@ -60,7 +60,7 @@ FUNC (const SRC_UNIT *s, size_t n, DST_UNIT *resultbuf, size_t *lengthp) int count; /* Fetch a Unicode character from the input string. */ - count = u8_mbtouc_safe (&uc, s, s_end - s); + count = u8_mbtouc (&uc, s, s_end - s); if (count < 0) { if (!(result == resultbuf || result == NULL)) |