Author: sebor
Date: Thu Feb 2 17:35:32 2006
New Revision: 374556
URL: http://svn.apache.org/viewcvs?rev=374556&view=rev
Log:
2006-02-02 Martin Sebor <[EMAIL PROTECTED]>
* wcodecvt.cpp [_RWSTD_NO_WCRTOMB] (__rw_libc_do_out): Corrected
the spelling of wctomb() in conditionally compiled code.
Modified:
incubator/stdcxx/trunk/src/wcodecvt.cpp
Modified: incubator/stdcxx/trunk/src/wcodecvt.cpp
URL:
http://svn.apache.org/viewcvs/incubator/stdcxx/trunk/src/wcodecvt.cpp?rev=374556&r1=374555&r2=374556&view=diff
==============================================================================
--- incubator/stdcxx/trunk/src/wcodecvt.cpp (original)
+++ incubator/stdcxx/trunk/src/wcodecvt.cpp Thu Feb 2 17:35:32 2006
@@ -599,7 +599,7 @@
#ifndef _RWSTD_NO_WCRTOMB
dst_len = wcrtomb (tmpdst, *from_next, &state);
#elif !defined (_RWSTD_NO_WCTOMB)
- dst_len = wcrtomb (tmpdst, *from_next);
+ dst_len = wctomb (tmpdst, *from_next);
#else
dst_len = _RWSTD_SIZE_MAX;
#endif