From cce795cc39a961c8f9feebb099304cb313c59387 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 15 Oct 2019 13:58:07 +0000 Subject: [PATCH] database format: Add some padding to header This can be used to add things later without incrementing the database version. Signed-off-by: Michael Tremer --- src/loc/format.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/loc/format.h b/src/loc/format.h index 71acda4..f93b015 100644 --- a/src/loc/format.h +++ b/src/loc/format.h @@ -66,6 +66,9 @@ struct loc_database_header_v0 { // Tells us where the pool starts uint32_t pool_offset; uint32_t pool_length; + + // Add some padding for future extensions + char padding[32]; }; struct loc_database_network_node_v0 { -- 2.47.3