From: Paul Eggert Date: Tue, 3 Aug 2004 15:29:48 +0000 (+0000) Subject: (main): Use bool for booleans. X-Git-Tag: v5.3.0~885 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4690e0aa35434fed23e3b4289c2821ef0735467c;p=thirdparty%2Fcoreutils.git (main): Use bool for booleans. --- 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];