summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2022-05-02 10:31:27 -0700
committerVito Caputo <vcaputo@pengaru.com>2022-05-02 10:31:27 -0700
commit42e740d4fd63b7b02cc855c2601d87ebeb9236db (patch)
treef51c670da0f519126a2210278a8eac90993711f8 /src
parenta7faec05d904ee0cfd542e3004f83d1a00310573 (diff)
modules/rtv: silence compiler warning about parens
Diffstat (limited to 'src')
-rw-r--r--src/modules/rtv/rtv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/rtv/rtv.c b/src/modules/rtv/rtv.c
index a9bf8f6..4dde3bc 100644
--- a/src/modules/rtv/rtv.c
+++ b/src/modules/rtv/rtv.c
@@ -447,7 +447,7 @@ static int rtv_setup(const til_settings_t *settings, til_setting_t **res_setting
n++;
setup = new;
- } while (channel = strtok(NULL, ":"));
+ } while ((channel = strtok(NULL, ":")));
}
if (strcmp(snow_module, "none"))
© All Rights Reserved