From 98f45470d65138ce6433d864a385accad3055011 Mon Sep 17 00:00:00 2001 From: ewasylishen Date: Sat, 9 Jan 2016 20:03:27 +0000 Subject: [PATCH] zone.c: fix padding in memblock_t struct to works as intended. the previous layout was probably harmless but wasted a few bytes. git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@1275 af15c1b1-3010-417e-b628-4374ebc0bcbd --- quakespasm/Quake/zone.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quakespasm/Quake/zone.c b/quakespasm/Quake/zone.c index f351f66f..6227b08c 100644 --- a/quakespasm/Quake/zone.c +++ b/quakespasm/Quake/zone.c @@ -37,8 +37,8 @@ typedef struct memblock_s int size; // including the header and possibly tiny fragments int tag; // a tag of 0 is a free block int id; // should be ZONEID - struct memblock_s *next, *prev; int pad; // pad to 64 bit boundary + struct memblock_s *next, *prev; } memblock_t; typedef struct