diff options
author | Todd C. Miller <Todd.Miller@sudo.ws> | 2021-01-02 10:43:34 -0700 |
---|---|---|
committer | Todd C. Miller <Todd.Miller@sudo.ws> | 2021-01-02 10:43:34 -0700 |
commit | 0b8d36377830f20794137a39cae4766a19220909 (patch) | |
tree | fc4dadc877919ad710c0eb7f0e4ff1adf0835d58 /Makefile.in | |
parent | 0ed4dbc80843cd66226268c9f70d724ab19fb6de (diff) | |
download | sudo-0b8d36377830f20794137a39cae4766a19220909.tar.gz |
Minor fixes pointed out by cppcheck.
Also add compareBoolExpressionWithInt to suppression list.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index d6b73a596..aff53459b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -94,7 +94,7 @@ XGETTEXT_OPTS = -F -k_ -kN_ -kU_ --copyright-holder="Todd C. Miller" \ --flag sudo_lbuf_append_quoted:3:c-format --foreign-user # Default cppcheck options when run from the top-level Makefile -CPPCHECK_OPTS = -q --force --enable=warning,performance,portability --suppress=constStatement --error-exitcode=1 --inline-suppr -Dva_copy=va_copy -U__cplusplus -UQUAD_MAX -UQUAD_MIN -UUQUAD_MAX -U_POSIX_HOST_NAME_MAX -U_POSIX_PATH_MAX -U__NBBY -DNSIG=64 +CPPCHECK_OPTS = -q --force --enable=warning,performance,portability --suppress=constStatement --suppress=compareBoolExpressionWithInt --error-exitcode=1 --inline-suppr -Dva_copy=va_copy -U__cplusplus -UQUAD_MAX -UQUAD_MIN -UUQUAD_MAX -U_POSIX_HOST_NAME_MAX -U_POSIX_PATH_MAX -U__NBBY -DNSIG=64 # Default splint options when run from the top-level Makefile SPLINT_OPTS = -D__restrict= -checks |