diff --git a/src/lib_ccx/ccx_decoders_708_output.c b/src/lib_ccx/ccx_decoders_708_output.c index 2fcad966a..fcea7708b 100644 --- a/src/lib_ccx/ccx_decoders_708_output.c +++ b/src/lib_ccx/ccx_decoders_708_output.c @@ -110,10 +110,10 @@ void dtvcc_change_pen_attribs(dtvcc_tv_screen *tv, dtvcc_pen_attribs pen_attribs size_t write_utf16_char(unsigned short utf16_char, char *out) { - // Always write 2 bytes for UTF-16BE - out[0] = (char)((utf16_char >> 8) & 0xFF); - out[1] = (char)(utf16_char & 0xFF); - return 2; + // Always write 2 bytes for UTF-16BE + out[0] = (char)((utf16_char >> 8) & 0xFF); + out[1] = (char)(utf16_char & 0xFF); + return 2; } void dtvcc_write_row(dtvcc_writer_ctx *writer, dtvcc_service_decoder *decoder, int row_index, struct encoder_ctx *encoder, int use_colors)