Skip to content

Commit

Permalink
Fix C formatting again.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tehforsch committed Jan 17, 2025
1 parent 77b147b commit 26d9861
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 26d9861

Please # to comment.