]> mj.ucw.cz Git - libucw.git/commitdiff
Fixed a typo in name of one unused inline function.
authorPavel Charvat <pchar@ucw.cz>
Thu, 13 Nov 2008 15:11:26 +0000 (16:11 +0100)
committerPavel Charvat <pchar@ucw.cz>
Thu, 13 Nov 2008 15:11:26 +0000 (16:11 +0100)
ucw/ff-unicode.h

index c3d2300c3dd93b04d36a28a09675810f0b0b79a7..44593440e229e2a54db8961339c6b068590073df 100644 (file)
@@ -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);