From 1cfef53a9a7988db30fe4209c894694c43f71188 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Wed, 24 Aug 2022 14:58:18 +0200 Subject: [PATCH] added missing parameter to noOutput result --- src/lib/flags.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/flags.c b/src/lib/flags.c index 04eb814..48f2789 100644 --- a/src/lib/flags.c +++ b/src/lib/flags.c @@ -43,7 +43,7 @@ outputFlags noOutput(_Bool exitCode) } emptyKey[getKeyLength()] = '\0'; - return (outputFlags) { emptyText, emptyKey, 0, 0, exitCode }; + return (outputFlags) { emptyText, emptyKey, 0, 0, 0, exitCode }; } //SETTERS