From e383d0759474f94df04a3191c44940b46b93934a Mon Sep 17 00:00:00 2001 From: EmeraldLockdown <86802223+EmeraldLoc@users.noreply.github.com> Date: Wed, 11 Mar 2026 19:36:23 -0500 Subject: [PATCH] Make syntax in ini more concise --- src/pc/ini.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/pc/ini.c b/src/pc/ini.c index 87fef555e..528f42b3c 100644 --- a/src/pc/ini.c +++ b/src/pc/ini.c @@ -215,9 +215,7 @@ fail: * Deletes ini_t struct from memory. */ void ini_free(ini_t *ini) { - if (ini) { - free(ini->data); - } + if (ini) free(ini->data); free(ini); }