summaryrefslogtreecommitdiff
path: root/src/nohup.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2004-08-03 15:29:48 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2004-08-03 15:29:48 +0000
commit4690e0aa35434fed23e3b4289c2821ef0735467c (patch)
tree522cd1ed0920f867fa492f7cd40506f719ac9dfc /src/nohup.c
parent224059ad65e3d89abdb01150a1e7796fdf461ad5 (diff)
downloadcoreutils-4690e0aa35434fed23e3b4289c2821ef0735467c.tar.xz
(main): Use bool for booleans.
Diffstat (limited to 'src/nohup.c')
-rw-r--r--src/nohup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nohup.c b/src/nohup.c
index 1bc778154..96b2b2330 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];