From cb6460788cd1a9ded5e4cbeaadce5f79772ef95a Mon Sep 17 00:00:00 2001 From: Henrik Andersson Date: Tue, 26 Sep 2017 13:58:56 +0200 Subject: [PATCH] Remove unused variable --- seamless.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/seamless.c b/seamless.c index a10af6e..33f4cbf 100644 --- a/seamless.c +++ b/seamless.c @@ -57,7 +57,7 @@ static RD_BOOL seamless_process_line(const char *line, void *data) { char *p, *l; - char *tok1, *tok2, *tok3, *tok4, *tok5, *tok6, *tok7, *tok8; + char *tok1, *tok3, *tok4, *tok5, *tok6, *tok7, *tok8; unsigned long id, flags; char *endptr; @@ -67,7 +67,7 @@ seamless_process_line(const char *line, void *data) logger(Core, Debug, "seamless_process_line(), got '%s'", p); tok1 = seamless_get_token(&p); - tok2 = seamless_get_token(&p); + (void)seamless_get_token(&p); tok3 = seamless_get_token(&p); tok4 = seamless_get_token(&p); tok5 = seamless_get_token(&p);