From 40fbed495dacc6e7fe18a2faf900729846f7462d Mon Sep 17 00:00:00 2001 From: Doug Schaapveld Date: Wed, 22 May 2024 15:14:50 -0500 Subject: [PATCH] Remove extraneous NULL argument --- src/log.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/log.c b/src/log.c index c1c7efbf..7e0c6dc1 100644 --- a/src/log.c +++ b/src/log.c @@ -192,8 +192,7 @@ static int print_it(const char const *formatwithtid, const char const *msg, int log_key_value[ENVIRONMENT], log_key_value[HOST_ADDRESS], syscall(SYS_gettid), - PACKAGE_VERSION, - NULL); + PACKAGE_VERSION); free(escaped); return 0; }