diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2020-06-02 17:12:07 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-06-02 17:12:07 -0700 |
commit | 91681e8480af21dcab2c0d91bb1b7851cbc83d81 (patch) | |
tree | 4f362e947af8aa580f836d8232955ac2e693d23f /security | |
parent | 1ee08de1e234d95b5b4f866878b72fceb5372904 (diff) | |
parent | 27acbf41be3928999b3a291fceee2a4b50218f00 (diff) | |
download | linux-91681e8480af21dcab2c0d91bb1b7851cbc83d81.tar.bz2 |
Merge tag 'tomoyo-pr-20200601' of git://git.osdn.net/gitroot/tomoyo/tomoyo-test1
Pull tomoyo update from Tetsuo Handa:
"One patch for suppressing coccicheck's warning"
* tag 'tomoyo-pr-20200601' of git://git.osdn.net/gitroot/tomoyo/tomoyo-test1:
tomoyo: use true for bool variable
Diffstat (limited to 'security')
-rw-r--r-- | security/tomoyo/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/tomoyo/common.c b/security/tomoyo/common.c index f93f8acd05f7..c16b8c1b03e7 100644 --- a/security/tomoyo/common.c +++ b/security/tomoyo/common.c @@ -1025,7 +1025,7 @@ static bool tomoyo_select_domain(struct tomoyo_io_buffer *head, if (domain) head->r.domain = &domain->list; else - head->r.eof = 1; + head->r.eof = true; tomoyo_io_printf(head, "# select %s\n", data); if (domain && domain->is_deleted) tomoyo_io_printf(head, "# This is a deleted domain.\n"); |