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 78b55b7af5..15f32ab71f 100644 --- a/stdlib/wctomb.c +++ b/stdlib/wctomb.c @@ -53,7 +53,7 @@ DEFUN(wctomb, (s, wchar), register char *s AND wchar_t wchar) *s = '\0'; return 1; } - else if (mb == NULL) + else /* if (mb == NULL) */ { if ((wchar_t) (char) wchar == wchar && isascii ((char) wchar)) { |