1 From ad161e98700b31e262db3f9ac2dd4e9761602faa Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?Jan=20Ekstr=C3=B6m?= <jeebjp@gmail.com>
3 Date: Sun, 17 Feb 2019 23:13:00 +0200
4 Subject: [PATCH] decoder: add curly braces around a multi-line statement
6 It seems like these are meant to be executed together when correct
7 data is decoded. Right now it would always return one in this
11 1 file changed, 2 insertions(+)
13 diff --git a/src/decoder.c b/src/decoder.c
14 index 2b77f38..69ea351 100644
17 @@ -1140,8 +1140,10 @@ static int decoder_handle_time( arib_decoder_t *decoder )
20 if( i_mode == 1 && c >= 0x40 && c <= 0x7F )
22 decoder->i_control_time += c & 0x3f;