Skip to content

Commit 51de8f2

Browse files
committed
fix formatting issue (added a space after if)
1 parent 19fb2f6 commit 51de8f2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib_ccx/es_userdata.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ int user_data(struct encoder_ctx *enc_ctx, struct lib_cc_decode *dec_ctx, struct
161161
skip_bits(ustream, 5); // line_offset - unused
162162
cc_data1 = (unsigned int)read_bits(ustream, 8);
163163
cc_data2 = (unsigned int)read_bits(ustream, 8);
164-
if(read_bits(ustream, 1) == 0)
164+
if (read_bits(ustream, 1) == 0)
165165
{
166166
dbg_print(CCX_DMT_VERBOSE, "SCTE 20: Marker bit is 0 (should be 1)\n");
167167
}

0 commit comments

Comments
 (0)