summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/fwide.c
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2008-04-17 22:17:54 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2008-04-17 22:17:54 +0000
commit1e98f88776fc606df245a382685b1ac634a81389 (patch)
treeb259dd878c8cb0ee9fb15608aebb9453ad10e7b1 /lib/libc/stdio/fwide.c
parentaba7c5b84b764f7dcb96c651735aa1bb10348d34 (diff)
Notes
Diffstat (limited to 'lib/libc/stdio/fwide.c')
-rw-r--r--lib/libc/stdio/fwide.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdio/fwide.c b/lib/libc/stdio/fwide.c
index 70309f56daa1..c94ffe63a1bc 100644
--- a/lib/libc/stdio/fwide.c
+++ b/lib/libc/stdio/fwide.c
@@ -42,9 +42,9 @@ fwide(FILE *fp, int mode)
FLOCKFILE(fp);
/* Only change the orientation if the stream is not oriented yet. */
- if (mode != 0 && fp->_extra->orientation == 0)
- fp->_extra->orientation = mode > 0 ? 1 : -1;
- m = fp->_extra->orientation;
+ if (mode != 0 && fp->_orientation == 0)
+ fp->_orientation = mode > 0 ? 1 : -1;
+ m = fp->_orientation;
FUNLOCKFILE(fp);
return (m);