diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2004-08-03 15:29:48 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2004-08-03 15:29:48 +0000 |
commit | 4690e0aa35434fed23e3b4289c2821ef0735467c (patch) | |
tree | 522cd1ed0920f867fa492f7cd40506f719ac9dfc /src/nohup.c | |
parent | 224059ad65e3d89abdb01150a1e7796fdf461ad5 (diff) | |
download | coreutils-4690e0aa35434fed23e3b4289c2821ef0735467c.tar.xz |
(main): Use bool for booleans.
Diffstat (limited to 'src/nohup.c')
-rw-r--r-- | src/nohup.c | 2 |
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]; |