diff options
author | Mark Stapp <mjs@voltanet.io> | 2021-01-11 22:33:27 +0100 |
---|---|---|
committer | Mark Stapp <mjs@voltanet.io> | 2021-01-11 22:33:27 +0100 |
commit | fb913e53a589f1f68dca9308799d19451ebf22e5 (patch) | |
tree | fc1f686f529d8aacf5aecc1f18a69f094ddb6084 | |
parent | Merge pull request #7830 from volta-networks/misc_fixes_2021 (diff) | |
download | frr-fb913e53a589f1f68dca9308799d19451ebf22e5.tar.xz frr-fb913e53a589f1f68dca9308799d19451ebf22e5.zip |
zebra: remove unused local in dplane sample plugin
Remove an unused local in the sample dataplane plugin.
Signed-off-by: Mark Stapp <mjs@voltanet.io>
-rw-r--r-- | zebra/sample_plugin.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/zebra/sample_plugin.c b/zebra/sample_plugin.c index c96a86cc7..464205f2f 100644 --- a/zebra/sample_plugin.c +++ b/zebra/sample_plugin.c @@ -92,7 +92,6 @@ static int sample_process(struct zebra_dplane_provider *prov) static int init_sample_plugin(struct thread_master *tm) { int ret; - struct zebra_dplane_provider *prov = NULL; /* Note that we don't use or store the thread_master 'tm'. We * don't use the zebra main pthread: our plugin code will run in |