aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorToni <matzeton@googlemail.com>2024-04-04 20:41:45 +0200
committerGitHub <noreply@github.com>2024-04-04 20:41:45 +0200
commit09bb383437c11ef55e926ed15cdf986c0d426827 (patch)
tree8c2821723a5b3ceebd1b13d069ba0c1d100d3271 /src
parentead9aa72da848cea78ecdedd5fc411ed2a73cc78 (diff)
Fixed yet another another "unused function" warning. (#2367)
* added `-Wextra` to the CI ``` In file included from ndpi_bitmap64_fuse.c:31: ./third_party/include/binaryfusefilter.h:31:24: error: unused function 'binary_fuse_rotl64' [-Werror,-Wunused-function] static inline uint64_t binary_fuse_rotl64(uint64_t n, unsigned int c) { ..snip.. ``` Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src')
-rw-r--r--src/lib/Makefile.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/Makefile.in b/src/lib/Makefile.in
index e7a0c2dba..4643136e2 100644
--- a/src/lib/Makefile.in
+++ b/src/lib/Makefile.in
@@ -19,6 +19,7 @@ CFLAGS += -fPIC -DPIC
endif
CFLAGS += -I. -I../include -Ithird_party/include -DNDPI_LIB_COMPILATION @NDPI_CFLAGS@ @GPROF_CFLAGS@ @CUSTOM_NDPI@ @ADDITIONAL_INCS@
CFLAGS_ndpi_bitmap.c := -Wno-unused-function
+CFLAGS_ndpi_bitmap64_fuse.c := -Wno-unused-function
CFLAGS_third_party/src/gcrypt_light.c := -Wno-unused-function -Wno-unused-parameter
CFLAGS_third_party/src/ahocorasick.c := -Wno-unused-function -Wno-unused-parameter
CFLAGS_third_party/src/roaring.c := -Wno-unused-function -Wno-attributes