2
0
mirror of https://github.com/openvswitch/ovs synced 2025-10-25 15:07:05 +00:00

coverage: Use size_t for coverage counter array lengths.

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 <ethan@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
This commit is contained in:
Ethan Jackson
2013-12-13 09:57:38 -08:00
parent 4e8575089d
commit 65dd5d75ec

View File

@@ -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;