diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2022-05-02 10:31:27 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2022-05-02 10:31:27 -0700 |
commit | 42e740d4fd63b7b02cc855c2601d87ebeb9236db (patch) | |
tree | f51c670da0f519126a2210278a8eac90993711f8 /src/modules | |
parent | a7faec05d904ee0cfd542e3004f83d1a00310573 (diff) |
modules/rtv: silence compiler warning about parens
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/rtv/rtv.c | 2 |
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")) |