1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-06 18:42:54 +03:00

Fix incorrect header size macros

This commit is contained in:
Teodor Sigaev
2005-11-03 18:16:31 +00:00
parent fb30ac54e6
commit 6812abb673

View File

@@ -13,7 +13,7 @@ typedef struct RegisNode
unsigned char data[1]; unsigned char data[1];
} RegisNode; } RegisNode;
#define RNHDRSZ (sizeof(uint32)+sizeof(void*)) #define RNHDRSZ (offsetof(RegisNode,data))
#define RSF_ONEOF 1 #define RSF_ONEOF 1
#define RSF_NONEOF 2 #define RSF_NONEOF 2