Skip to content

Commit 91681e8

Browse files
committed
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
2 parents 1ee08de + 27acbf4 commit 91681e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

security/tomoyo/common.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1025,7 +1025,7 @@ static bool tomoyo_select_domain(struct tomoyo_io_buffer *head,
10251025
if (domain)
10261026
head->r.domain = &domain->list;
10271027
else
1028-
head->r.eof = 1;
1028+
head->r.eof = true;
10291029
tomoyo_io_printf(head, "# select %s\n", data);
10301030
if (domain && domain->is_deleted)
10311031
tomoyo_io_printf(head, "# This is a deleted domain.\n");

0 commit comments

Comments
 (0)