From 320cc443a8c50cc0b5813be3b8992fb01d7c020e Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 1 Sep 2020 01:28:33 +0200 Subject: [PATCH] Reorder structs, alignment --- core_backup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core_backup.c b/core_backup.c index 2e09fd5fd6..be5a6254ce 100644 --- a/core_backup.c +++ b/core_backup.c @@ -34,9 +34,9 @@ /* Holds all entries in a core backup list */ struct core_backup_list { + core_backup_list_entry_t *entries; size_t size; size_t capacity; - core_backup_list_entry_t *entries; }; /*********************/