Fixes the following warning on my system.

../lib/coverage.c:54:40: error: incompatible pointer types passing
'unsigned int *' to parameter of type 'size_t *' (aka 'unsigned long
*')

Signed-off-by: Ethan Jackson <et...@nicira.com>
---
 lib/coverage.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/coverage.c b/lib/coverage.c
index eae1799..cc17e34 100644
--- a/lib/coverage.c
+++ b/lib/coverage.c
@@ -30,8 +30,8 @@ VLOG_DEFINE_THIS_MODULE(coverage);
 
 /* The coverage counters. */
 static struct coverage_counter **coverage_counters = NULL;
-static unsigned int n_coverage_counters = 0;
-static unsigned int allocated_coverage_counters = 0;
+static size_t n_coverage_counters = 0;
+static size_t allocated_coverage_counters = 0;
 
 static struct ovs_mutex coverage_mutex = OVS_MUTEX_INITIALIZER;
 
-- 
1.8.1.2

_______________________________________________
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev

Reply via email to