Reorder structs, alignment

This commit is contained in:
twinaphex 2020-08-21 09:57:11 +02:00
parent 75d925cd3f
commit 99873ccd8a

View File

@ -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;
};