aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/Makefile
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-02-14 18:35:35 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2018-02-14 18:35:35 +0100
commitacd8820e464a57fbf59b9cb5c26a9b9a844de79b (patch)
tree56531dee6f05e01bb88bd32af2f676e7a7138454 /src/Makefile
parentallowedips: indicate to clang-analyzer that trie is non-null (diff)
downloadwireguard-monolithic-historical-acd8820e464a57fbf59b9cb5c26a9b9a844de79b.tar.xz
wireguard-monolithic-historical-acd8820e464a57fbf59b9cb5c26a9b9a844de79b.zip
blake2s: use union instead of casting
This deals with alignment more easily and also helps squelch a clang-analyzer warning.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 0193e10..c7ba400 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -73,7 +73,7 @@ style:
$(KERNELDIR)/scripts/checkpatch.pl -f --max-line-length=4000 --codespell --color=always $(filter-out wireguard.mod.c,$(wildcard *.c)) $(wildcard *.h)
check: clean
- scan-build --view --keep-going $(MAKE) module tools CONFIG_WIREGUARD_DEBUG=y C=2 CF="-D__CHECK_ENDIAN__"
+ scan-build --html-title=WireGuard -maxloop 100 --view --keep-going $(MAKE) module tools CONFIG_WIREGUARD_DEBUG=y C=2 CF="-D__CHECK_ENDIAN__"
coccicheck: clean
@$(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_WIREGUARD_DEBUG=y coccicheck MODE=report