From: Pavel Charvat Date: Thu, 13 Nov 2008 15:11:26 +0000 (+0100) Subject: Fixed a typo in name of one unused inline function. X-Git-Tag: holmes-import~152 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=3e867812df5fa4cac2f136077171595002713325;p=libucw.git Fixed a typo in name of one unused inline function. --- diff --git a/ucw/ff-unicode.h b/ucw/ff-unicode.h index c3d2300c..44593440 100644 --- a/ucw/ff-unicode.h +++ b/ucw/ff-unicode.h @@ -141,7 +141,7 @@ static inline void bput_utf16_be(struct fastbuf *b, uns u) * Write an utf16 character to fastbuf. * Little endian version. **/ -static inline void bput_utf16_lbe(struct fastbuf *b, uns u) +static inline void bput_utf16_le(struct fastbuf *b, uns u) { if (bavailw(b) >= 4) b->bptr = utf16_le_put(b->bptr, u);