From e52674334610f4c2a1eb22b095c126527705f314 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Fri, 22 Jan 2021 12:58:46 +0100 Subject: [PATCH] sig_handler(): Split a long line in two --- jcc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jcc.c b/jcc.c index d73b4a99..ab4956f0 100644 --- a/jcc.c +++ b/jcc.c @@ -376,7 +376,8 @@ static void sig_handler(int the_signal) * We shouldn't be here, unless we catch signals * in main() that we can't handle here! */ - log_error(LOG_LEVEL_FATAL, "sig_handler: exiting on unexpected signal %d", the_signal); + log_error(LOG_LEVEL_FATAL, + "sig_handler: exiting on unexpected signal %d", the_signal); } return; -- 2.39.2