From 80973a617ada9181a40a69e25b7f23e7c02bc545 Mon Sep 17 00:00:00 2001 From: Mark Farrugia Date: Tue, 30 Oct 2018 17:58:22 +1100 Subject: Fix debug print macro Missing blank quotations beside fmt Signed-off-by: Mark Farrugia --- utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils.h') diff --git a/utils.h b/utils.h index 0931e82..d50ce59 100644 --- a/utils.h +++ b/utils.h @@ -19,7 +19,7 @@ #define CHK_ERR_V(errno, fmt, args...) \ do { \ if ((errno) < 0) { \ - DERROR(D_LOGNAME, (fmt), ##args) \ + DERROR(D_LOGNAME, "" fmt, ##args); \ return (errno); \ } \ } while (0) -- cgit 1.2.3-korg