Skip to content

Commit 68888b9

Browse files
committed
lwip: fix parentheses equality issue
Another issue revealed by `llvm`. Since this is caused by the resolution of a macro in lwIP this can't be solved as a patch, so we just ignore the warning.
1 parent 4b9a1a3 commit 68888b9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pkg/lwip/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@ all: git-download
99
"$(MAKE)" -C $(PKG_BUILDDIR)
1010

1111
include $(RIOTBASE)/pkg/pkg.mk
12+
13+
ifeq (llvm,$(TOOLCHAIN))
14+
CFLAGS += -Wno-parentheses-equality
15+
endif

0 commit comments

Comments
 (0)