From 7019745ff7787306c5c367f60ef30240d0d05491 Mon Sep 17 00:00:00 2001 From: Patrick Gaskin Date: Mon, 29 Jun 2020 07:58:21 -0400 Subject: [PATCH] Fixed minor formatting issue in action.c --- src/action.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/action.c b/src/action.c index 9ad3f55..af388b6 100644 --- a/src/action.c +++ b/src/action.c @@ -13,7 +13,7 @@ nm_action_result_t *nm_action_result_silent() { } #define _nm_action_result_fmt(_fn, _typ) \ - nm_action_result_t *nm_action_result_##_fn(const char *fmt, ...) { \ + nm_action_result_t *nm_action_result_##_fn(const char *fmt, ...) { \ nm_action_result_t *res = calloc(1, sizeof(nm_action_result_t)); \ res->type = _typ; \ va_list v; \