diff options
author | Ole Troan <ot@cisco.com> | 2017-12-06 17:00:05 +0100 |
---|---|---|
committer | Ole Troan <ot@cisco.com> | 2017-12-06 17:49:48 +0100 |
commit | 3288ed7234ad9b6d59d249f48dd1a2d06168bfd5 (patch) | |
tree | 96d5200d8c7a0630ce127ff7387c2292342acc26 /src/vppinfra/test_heap.c | |
parent | bf4be5730557c4280f2f9f8b7ef1a194716c82bd (diff) |
UT: Repaired broken C unit tests (--enable-tests)
Change-Id: I63d720378b92813993525f80fee90fc79df27fba
Signed-off-by: Ole Troan <ot@cisco.com>
Diffstat (limited to 'src/vppinfra/test_heap.c')
-rw-r--r-- | src/vppinfra/test_heap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vppinfra/test_heap.c b/src/vppinfra/test_heap.c index 3d5171bf053..95e64b728be 100644 --- a/src/vppinfra/test_heap.c +++ b/src/vppinfra/test_heap.c @@ -86,7 +86,7 @@ main (int argc, char *argv[]) fformat (stderr, "%U\n", format_clib_mem_usage, /* verbose */ 0); vec_resize (objects, 1000); - if (vec_bytes (objects)) /* stupid warning be gone */ + if (vec_bytes (objects) > 0) /* stupid warning be gone */ memset (objects, ~0, vec_bytes (objects)); vec_resize (handles, vec_len (objects)); |