summaryrefslogtreecommitdiff
path: root/src/charset/codecs/codec_utf8.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/charset/codecs/codec_utf8.c')
-rw-r--r--src/charset/codecs/codec_utf8.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/charset/codecs/codec_utf8.c b/src/charset/codecs/codec_utf8.c
index f9cd00a..ad46766 100644
--- a/src/charset/codecs/codec_utf8.c
+++ b/src/charset/codecs/codec_utf8.c
@@ -187,8 +187,7 @@ parserutils_error charset_utf8_codec_encode(parserutils_charset_codec *codec,
abort();
/* Insufficient output buffer space */
- for (len = 0;
- len < c->write_len; len++) {
+ for (len = 0; len < c->write_len; len++) {
c->write_buf[len] = pwrite[len];
}