aboutsummaryrefslogtreecommitdiff
path: root/src/Infobox/Infobox.c
diff options
context:
space:
mode:
authorfrosty <gabriel@bwaaa.monster>2026-03-05 04:50:32 +0000
committerfrosty <gabriel@bwaaa.monster>2026-03-05 04:50:32 +0000
commit24cec7a35072ac50e1fe902a925e69330866dbca (patch)
treef60bb7c38b0b952e074f9b8f8d1cef758d7f8ec8 /src/Infobox/Infobox.c
parent5ed5a6ecc749e8b557ea62f04a444e203f4e48f6 (diff)
downloadomnisearch-24cec7a35072ac50e1fe902a925e69330866dbca.tar.gz
made formatting more consistent
Diffstat (limited to 'src/Infobox/Infobox.c')
-rw-r--r--src/Infobox/Infobox.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Infobox/Infobox.c b/src/Infobox/Infobox.c
index 5043c05..337b057 100644
--- a/src/Infobox/Infobox.c
+++ b/src/Infobox/Infobox.c
@@ -2,12 +2,12 @@
#include <stdlib.h>
void free_infobox(InfoBox *info) {
- if (info->title)
- free(info->title);
- if (info->thumbnail_url)
- free(info->thumbnail_url);
- if (info->extract)
- free(info->extract);
- if (info->url)
- free(info->url);
+ if (info->title)
+ free(info->title);
+ if (info->thumbnail_url)
+ free(info->thumbnail_url);
+ if (info->extract)
+ free(info->extract);
+ if (info->url)
+ free(info->url);
}