aboutsummaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorAlfredo Cardigliano <cardigliano@ntop.org>2021-09-28 09:44:31 +0200
committerAlfredo Cardigliano <cardigliano@ntop.org>2021-09-28 09:44:31 +0200
commit721031210b9318eaf643660748dcac61b9dd2a8a (patch)
treebe6f08a88e0dcbec97c7c75e62df1f16eb2db069 /example
parentaf35d6b96365122fcb1474bec800f6c169e36be7 (diff)
Fix warning
Diffstat (limited to 'example')
-rw-r--r--example/ndpiReader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c
index a88c40eec..f619865bb 100644
--- a/example/ndpiReader.c
+++ b/example/ndpiReader.c
@@ -4388,7 +4388,7 @@ void compressedBitmapUnitTest() {
b1 = ndpi_bitmap_deserialize(buf);
assert(b1);
- assert(it = ndpi_bitmap_iterator_alloc(b));
+ assert((it = ndpi_bitmap_iterator_alloc(b)));
while(ndpi_bitmap_iterator_next(it, &value))
printf("%u ", value);