diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/rc/rc-logger.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rc/rc-logger.c b/src/rc/rc-logger.c index e77b518c..cf218ec8 100644 --- a/src/rc/rc-logger.c +++ b/src/rc/rc-logger.c @@ -150,10 +150,10 @@ void rc_logger_open(const char *level) int i; FILE *log = NULL; - if (! isatty(STDOUT_FILENO)) + if (!isatty(STDOUT_FILENO)) return; - if (! rc_conf_yesno("rc_logger")) + if (!rc_conf_yesno("rc_logger")) return; if (pipe(signal_pipe) == -1) |