diff options
Diffstat (limited to 'console-tools/reset.c')
-rw-r--r-- | console-tools/reset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/console-tools/reset.c b/console-tools/reset.c index a2bf44d..5d5d4e2 100644 --- a/console-tools/reset.c +++ b/console-tools/reset.c @@ -26,7 +26,7 @@ int reset_main(int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) /* no options, no getopt */ - if (isatty(0) && isatty(1)) { + if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) { /* See 'man 4 console_codes' for details: * "ESC c" -- Reset * "ESC ( K" -- Select user mapping |