Quiet a few harmless cppcheck warnings.

This commit is contained in:
Todd C. Miller
2021-01-06 13:01:10 -07:00
parent 84b3a1dae1
commit 92c88d4105
9 changed files with 22 additions and 19 deletions

View File

@@ -42,13 +42,13 @@
* Initialize all tags to UNSPEC.
*/
#define TAGS_INIT(t) do { \
(t).follow = UNSPEC; \
(t).log_input = UNSPEC; \
(t).log_output = UNSPEC; \
(t).noexec = UNSPEC; \
(t).nopasswd = UNSPEC; \
(t).send_mail = UNSPEC; \
(t).setenv = UNSPEC; \
(t)->follow = UNSPEC; \
(t)->log_input = UNSPEC; \
(t)->log_output = UNSPEC; \
(t)->noexec = UNSPEC; \
(t)->nopasswd = UNSPEC; \
(t)->send_mail = UNSPEC; \
(t)->setenv = UNSPEC; \
} while (0)
/*