summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-03 18:45:41 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-03 18:45:41 +0000
commit102ec1171d94df9def66214dee1387a5f266dee9 (patch)
treeea3caf1cfcfd3c04049adbdb146e2f8e57ff84b5 /io.c
parent932d63efe08fc0d2a69ea81676508a62a2c981b2 (diff)
* io.c (make_writeconv): fixed typo of previous commit.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33628 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/io.c b/io.c
index 5d3c17e2fe..ef8e24b5fa 100644
--- a/io.c
+++ b/io.c
@@ -910,8 +910,8 @@ make_writeconv(rb_io_t *fptr)
ecopts = fptr->encs.ecopts;
#ifdef TEXTMODE_NEWLINE_DECORATOR_ON_WRITE
if (NEED_NEWLINE_DECORATOR_ON_WRITE(fptr) &&
- (!(ecflags & ECONV_NEWLINE_DECORATOR_MASK)) ||
- (ecflags & ECONV_UNIVERSAL_NEWLINE_DECORATOR))
+ (!(ecflags & ECONV_NEWLINE_DECORATOR_MASK) ||
+ (ecflags & ECONV_UNIVERSAL_NEWLINE_DECORATOR)))
ecflags &= ~ECONV_UNIVERSAL_NEWLINE_DECORATOR;
ecflags |= TEXTMODE_NEWLINE_DECORATOR_ON_WRITE;
#endif