From 99873ccd8a0f08d1e28c23292ff32c29b808fcd2 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 21 Aug 2020 09:57:11 +0200 Subject: [PATCH] Reorder structs, alignment --- libretro-common/include/file/config_file.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/libretro-common/include/file/config_file.h b/libretro-common/include/file/config_file.h index d56bdd793d..4f224c8940 100644 --- a/libretro-common/include/file/config_file.h +++ b/libretro-common/include/file/config_file.h @@ -116,13 +116,12 @@ bool config_entry_exists(config_file_t *conf, const char *entry); struct config_entry_list { - /* If we got this from an #include, - * do not allow overwrite. */ - bool readonly; - char *key; char *value; struct config_entry_list *next; + /* If we got this from an #include, + * do not allow overwrite. */ + bool readonly; };