diff options
author | Bruno Haible <bruno@clisp.org> | 2007-05-27 23:52:58 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:14:50 +0200 |
commit | 5429afc65f641c54b827157ff343d7d3bdfeaf3d (patch) | |
tree | 1c3405e4e7cdde78f2ef2b84f8d5327aa34e2dc9 /gettext-tools/src/x-python.c | |
parent | 798a11157f6274ad97b239b047a5dfa7b35c3a5f (diff) | |
download | external_gettext-5429afc65f641c54b827157ff343d7d3bdfeaf3d.zip external_gettext-5429afc65f641c54b827157ff343d7d3bdfeaf3d.tar.gz external_gettext-5429afc65f641c54b827157ff343d7d3bdfeaf3d.tar.bz2 |
Avoid link error.
Diffstat (limited to 'gettext-tools/src/x-python.c')
-rw-r--r-- | gettext-tools/src/x-python.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gettext-tools/src/x-python.c b/gettext-tools/src/x-python.c index a23b107..45915f9 100644 --- a/gettext-tools/src/x-python.c +++ b/gettext-tools/src/x-python.c @@ -912,7 +912,7 @@ mixed_string_buffer_append (struct mixed_string_buffer *bp, int c) utf16buf[0] = bp->utf16_surr; utf16buf[1] = UNICODE_VALUE (c); - if (u16_mbtouc_aux (&uc, utf16buf, 2) != 2) + if (u16_mbtouc (&uc, utf16buf, 2) != 2) abort (); mixed_string_buffer_append_unicode (bp, uc); |