diff options
Diffstat (limited to 'stdlib/wctomb.c')
-rw-r--r-- | stdlib/wctomb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/wctomb.c b/stdlib/wctomb.c index 757e6adaad..174bbf46c2 100644 --- a/stdlib/wctomb.c +++ b/stdlib/wctomb.c @@ -44,7 +44,7 @@ wctomb (char *s, wchar_t wchar) /* This is an extension in the Unix standard which does not directly violate ISO C. */ - memset (&__no_r_state, '\0', siyeof __no_r_state); + memset (&__no_r_state, '\0', sizeof __no_r_state); return __wcsmbs_gconv_fcts.tomb->__stateful; } |