From afd47189e8644aacc411628f35d098db6d971a46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0tetiar?= Date: Wed, 11 Dec 2019 13:31:59 +0100 Subject: examples: remove dead increments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes following error reported by clang-9 analyzer: examples/server.c:244:2: warning: Value stored to 'argc' is never read argc -= optind; ^ ~~~~~~ examples/server.c:245:2: warning: Value stored to 'argv' is never read argv += optind; ^ ~~~~~~ Signed-off-by: Petr Štetiar --- examples/client.c | 3 --- examples/server.c | 3 --- 2 files changed, 6 deletions(-) diff --git a/examples/client.c b/examples/client.c index 7ef5663..aae09f4 100644 --- a/examples/client.c +++ b/examples/client.c @@ -220,9 +220,6 @@ int main(int argc, char **argv) } } - argc -= optind; - argv += optind; - uloop_init(); ctx = ubus_connect(ubus_socket); diff --git a/examples/server.c b/examples/server.c index 004eaf3..0913fff 100644 --- a/examples/server.c +++ b/examples/server.c @@ -241,9 +241,6 @@ int main(int argc, char **argv) } } - argc -= optind; - argv += optind; - uloop_init(); signal(SIGPIPE, SIG_IGN); -- cgit v1.2.1