summaryrefslogtreecommitdiff
path: root/StdLib/LibC/Stdio/fputwc.c
diff options
context:
space:
mode:
Diffstat (limited to 'StdLib/LibC/Stdio/fputwc.c')
-rw-r--r--StdLib/LibC/Stdio/fputwc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/StdLib/LibC/Stdio/fputwc.c b/StdLib/LibC/Stdio/fputwc.c
index 8bbd40736..76ed83920 100644
--- a/StdLib/LibC/Stdio/fputwc.c
+++ b/StdLib/LibC/Stdio/fputwc.c
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2010 - 2012, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials are licensed and made available
under the terms and conditions of the BSD License that accompanies this
distribution. The full text of the license may be found at
@@ -81,7 +81,6 @@ __fputwc_unlock(wchar_t wc, FILE *fp)
size = wcrtomb(buf, wc, st);
if (size == (size_t)-1) {
- errno = EILSEQ;
return WEOF;
}