mirror of
https://github.com/postgres/postgres.git
synced 2025-07-08 11:42:09 +03:00
Use FLEXIBLE_ARRAY_MEMBER in a number of other places.
I think we're about done with this...
This commit is contained in:
@ -44,7 +44,7 @@ typedef struct StatEntry
|
||||
struct StatEntry *left;
|
||||
struct StatEntry *right;
|
||||
uint32 lenlexeme;
|
||||
char lexeme[1];
|
||||
char lexeme[FLEXIBLE_ARRAY_MEMBER];
|
||||
} StatEntry;
|
||||
|
||||
#define STATENTRYHDRSZ (offsetof(StatEntry, lexeme))
|
||||
|
Reference in New Issue
Block a user