aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2024-04-04 19:38:47 +0200
committerToni Uhlig <matzeton@googlemail.com>2024-04-04 19:46:15 +0200
commit5375c5be5f827dbb17452a08ce7193096e914a77 (patch)
tree9d1a218eb6e1610f399109ddfc2dc5b978d71a8e /.github/workflows
parentdf29e12f5efbe84306c1ee7c011a197caec6de50 (diff)
Fixed yet another another "unused function" warning.fix/external-ndpi-build-3
* 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 '.github/workflows')
-rw-r--r--.github/workflows/build.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 516a569ce..0f0f8c880 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -14,7 +14,7 @@ jobs:
name: Python Bindings (ubuntu-latest)
runs-on: ubuntu-latest
env:
- CFLAGS: -Werror
+ CFLAGS: -Wextra -Werror
steps:
- uses: actions/checkout@v4
with:
@@ -71,7 +71,7 @@ jobs:
runs-on: ${{ matrix.os }}
env:
CC: ${{ matrix.compiler }}
- CFLAGS: -Werror
+ CFLAGS: -Wextra -Werror
strategy:
fail-fast: true
matrix: