summaryrefslogtreecommitdiffstats
path: root/generic/tclEncoding.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclEncoding.c')
-rw-r--r--generic/tclEncoding.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/generic/tclEncoding.c b/generic/tclEncoding.c
index 3f26ab7..ce5fda4 100644
--- a/generic/tclEncoding.c
+++ b/generic/tclEncoding.c
@@ -2584,7 +2584,8 @@ UtfToUtfProc(
} else {
/* TCL_ENCODING_PROFILE_TCL8 */
char chbuf[2];
- chbuf[0] = UCHAR(*src++); chbuf[1] = 0;
+ chbuf[0] = UCHAR(*src++);
+ chbuf[1] = 0;
TclUtfToUniChar(chbuf, &ch);
}
dst += Tcl_UniCharToUtf(ch, dst);
@@ -3510,7 +3511,8 @@ TableToUtfProc(
ch = UNICODE_REPLACE_CHAR;
} else {
char chbuf[2];
- chbuf[0] = byte; chbuf[1] = 0;
+ chbuf[0] = byte;
+ chbuf[1] = 0;
TclUtfToUniChar(chbuf, &ch);
}
}