diff --git a/src/debug.h b/src/debug.h index 4dab03c..1a45c0f 100644 --- a/src/debug.h +++ b/src/debug.h @@ -26,8 +26,9 @@ static void debug(const char *format, ...) { /* If the file doesn't exist, do nothing. Prevents writing log files in * unexpected places. The user must create the file manually. */ int fd = open(DEBUG_FILE, O_WRONLY | O_APPEND); - if (fd == -1) + if (fd == -1) { return; + } va_list ap; va_start(ap, format);