Skip to content

Commit 1b852ac

Browse files
Lf2CrLf codec fix
1 parent 52cc986 commit 1b852ac

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mimetic/codec/other_codecs.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,9 @@ struct Lf2CrLf: public unbuffered_codec, public chainable_codec<Lf2CrLf>
9393
{
9494
*out = CR; ++out;
9595
*out = LF; ++out;
96-
} else
96+
} else {
9797
*out = c; ++out;
98+
}
9899
m_prev = c;
99100
}
100101
const char* name() const

0 commit comments

Comments
 (0)