From 4690e0aa35434fed23e3b4289c2821ef0735467c Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 3 Aug 2004 15:29:48 +0000 Subject: [PATCH] (main): Use bool for booleans. --- src/nohup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nohup.c b/src/nohup.c index 1bc7781545..96b2b23302 100644 --- a/src/nohup.c +++ b/src/nohup.c @@ -73,7 +73,7 @@ main (int argc, char **argv) { int fd; int saved_stderr_fd = -1; - int stderr_isatty; + bool stderr_isatty; initialize_main (&argc, &argv); program_name = argv[0]; -- 2.47.3