mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
bf169e9f15
Correct an assortment of typos throughout the code base. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Matthew Ahrens <mahrens@delphix.com> Reviewed-by: Ryan Moeller <ryan@iXsystems.com> Signed-off-by: Andrea Gelmini <andrea.gelmini@gelma.net> Closes #11774
12 lines
295 B
Plaintext
12 lines
295 B
Plaintext
#
|
|
# Default rules for running cppcheck against the user space components.
|
|
#
|
|
|
|
PHONY += cppcheck
|
|
|
|
CPPCHECKFLAGS = --std=c99 --quiet --max-configs=1 --error-exitcode=2
|
|
CPPCHECKFLAGS += --inline-suppr -U_KERNEL
|
|
|
|
cppcheck:
|
|
$(CPPCHECK) -j$(CPU_COUNT) $(CPPCHECKFLAGS) $(DEFAULT_INCLUDES) $(SOURCES)
|