diff options
author | Carl Worth <cworth@cworth.org> | 2004-02-26 08:54:42 +0000 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2004-02-26 08:54:42 +0000 |
commit | 529b16f119fb2c203a10c1d46c3810fd177da2fc (patch) | |
tree | d6553c44ad540c8fe47ecddb5086bbd5a7b4cdf9 /src/cairo-ft-font.c | |
parent | bd5c27207aaa89ac4c55c55006f6253006c2a8b8 (diff) |
Add Jordi and Olvier to the AUTHORS file.
Fix broken return value for nchars (thanks to Jordi Mas <jordi@ximian.com>).
Diffstat (limited to 'src/cairo-ft-font.c')
-rw-r--r-- | src/cairo-ft-font.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-ft-font.c b/src/cairo-ft-font.c index 1b04397c..913ed836 100644 --- a/src/cairo-ft-font.c +++ b/src/cairo-ft-font.c @@ -263,7 +263,7 @@ _utf8_to_ucs4 (char const *utf8, len -= step; utf8 += step; } - *nchars = alloc; + *nchars = n; } static void |