aboutsummaryrefslogtreecommitdiffstats
path: root/src/vlib/error_funcs.h
diff options
context:
space:
mode:
authorGabriel Ganne <gabriel.ganne@enea.com>2017-02-04 10:51:04 +0100
committerFlorin Coras <florin.coras@gmail.com>2017-02-05 23:24:31 +0000
commit71d73fe818b1cd25ca6b181c450c404d43ad4abe (patch)
treef044a00059c63ff53e27d9bbadeb43760f38d028 /src/vlib/error_funcs.h
parent8e8f98c9d46788438bd176f7c2bfde0a5837cad9 (diff)
fix some 'stored but never read' warnings raised by clang
found by `scan-build make plugins-release` Signed-off-by: Gabriel Ganne <gabriel.ganne@enea.com> Change-Id: I52048e3a8ae3fb85eb3d91f6a5e15216dd7b9baa
Diffstat (limited to 'src/vlib/error_funcs.h')
-rw-r--r--src/vlib/error_funcs.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/vlib/error_funcs.h b/src/vlib/error_funcs.h
index 1a3602e92c6..ab281ba2ef8 100644
--- a/src/vlib/error_funcs.h
+++ b/src/vlib/error_funcs.h
@@ -45,10 +45,12 @@
always_inline void
vlib_error_elog_count (vlib_main_t * vm, uword counter, uword increment)
{
- elog_main_t *em = &vm->elog_main;
if (VLIB_ELOG_MAIN_LOOP > 0 && increment > 0)
- elog (em, vec_elt_at_index (vm->error_elog_event_types, counter),
- increment);
+ {
+ elog_main_t *em = &vm->elog_main;
+ elog (em, vec_elt_at_index (vm->error_elog_event_types, counter),
+ increment);
+ }
}
always_inline void