git: 61002e0371f0 - main - tty(4): Consistently use ISO C99 bool

From: Marius Strobl <marius_at_FreeBSD.org>
Date: Thu, 08 Jan 2026 01:21:56 UTC
The branch main has been updated by marius:

URL: https://cgit.FreeBSD.org/src/commit/?id=61002e0371f09fcd024434144657496d9caa3908

commit 61002e0371f09fcd024434144657496d9caa3908
Author:     Marius Strobl <marius@FreeBSD.org>
AuthorDate: 2026-01-07 17:12:24 +0000
Commit:     Marius Strobl <marius@FreeBSD.org>
CommitDate: 2026-01-08 01:20:54 +0000

    tty(4): Consistently use ISO C99 bool
    
    Fixes:  9750d9e5
---
 sys/kern/tty.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/kern/tty.c b/sys/kern/tty.c
index 067471eb949a..9297fc81df5e 100644
--- a/sys/kern/tty.c
+++ b/sys/kern/tty.c
@@ -1036,7 +1036,7 @@ static bool
 ttydevsw_defbusy(struct tty *tp __unused)
 {
 
-	return (FALSE);
+	return (false);
 }
 
 /*