From dd7198fcafb419779ab8803a99528d7609bac53d Mon Sep 17 00:00:00 2001 From: headshog Date: Tue, 16 May 2023 19:05:48 +0300 Subject: fixed numeric truncation error --- src/lib/ndpi_analyze.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib') diff --git a/src/lib/ndpi_analyze.c b/src/lib/ndpi_analyze.c index 1b3b9cc4f..75b650db5 100644 --- a/src/lib/ndpi_analyze.c +++ b/src/lib/ndpi_analyze.c @@ -93,7 +93,7 @@ void ndpi_reset_data_analysis(struct ndpi_analyze_struct *d) { /* Add a new point to analyze */ -void ndpi_data_add_value(struct ndpi_analyze_struct *s, const u_int32_t value) { +void ndpi_data_add_value(struct ndpi_analyze_struct *s, const u_int64_t value) { if(!s) return; -- cgit v1.2.3