diff options
author | Ivan Nardi <nardi.ivan@gmail.com> | 2025-06-09 09:30:30 +0200 |
---|---|---|
committer | Ivan Nardi <nardi.ivan@gmail.com> | 2025-06-09 09:30:30 +0200 |
commit | bcfa3f5477c892eb53daa1d8b94f665b787bf23d (patch) | |
tree | ef59a66477f5111bcddf13bc7d5cbe1f2c65cad0 /src/lib/ndpi_utils.c | |
parent | cbd7136b3480774a10f18744d33d3694ffee221b (diff) |
Rename `ndpi_bitmask_dealloc` into `ndpi_bitmask_free`
Diffstat (limited to 'src/lib/ndpi_utils.c')
-rw-r--r-- | src/lib/ndpi_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c index 7ea53922f..230c3bdeb 100644 --- a/src/lib/ndpi_utils.c +++ b/src/lib/ndpi_utils.c @@ -4460,7 +4460,7 @@ int ndpi_bitmask_alloc(struct ndpi_bitmask *b, u_int16_t max_bits) return 0; } -void ndpi_bitmask_dealloc(struct ndpi_bitmask *b) +void ndpi_bitmask_free(struct ndpi_bitmask *b) { if(b) { ndpi_free(b->fds); |