From 5af5f0faa243da42e04028c1f723fe899d24444d Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Thu, 6 Jun 2013 20:13:04 +0200 Subject: [PATCH] debug.h: Minor code style fix. --- src/debug.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); -- 2.43.2