From 26d9861e688000a7eba6275ec521de4f047fbda1 Mon Sep 17 00:00:00 2001 From: Toni Peter Date: Fri, 17 Jan 2025 12:47:36 +0100 Subject: [PATCH] Fix C formatting again. --- src/utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils.c b/src/utils.c index 1ce8afde8..742e0c700 100644 --- a/src/utils.c +++ b/src/utils.c @@ -280,8 +280,8 @@ write_script_stats (const char *buf, const char *path, int mode) pd = fopen (path, mode == 0 ? "a" : mode == 1 ? "r+" : "w"); if (pd == NULL) { - g_warning ("%s: Error opening FILE '%s' for script stats: %d - %s", __func__, - path, errno, strerror (errno)); + g_warning ("%s: Error opening FILE '%s' for script stats: %d - %s", + __func__, path, errno, strerror (errno)); return; }