Initial release of the message compiler.
diff --git a/unicode/wctomb.c b/unicode/wctomb.c index b2fcbc9..fd8b694 100644 --- a/unicode/wctomb.c +++ b/unicode/wctomb.c
@@ -208,6 +208,6 @@ if (flags || defchar || used) return wcstombs_dbcs_slow( &table->dbcs, flags, src, srclen, dst, dstlen, defchar, used ); - return wcstombs_sbcs( &table->sbcs, src, srclen, dst, dstlen ); + return wcstombs_dbcs( &table->dbcs, src, srclen, dst, dstlen ); } }