mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
Fix compiler warning about variable length field not last in struct.
Signed-off-by: Robert C. Helling <helling@atdotde.de>
This commit is contained in:
parent
a537894553
commit
1690ba7c0c
1 changed files with 1 additions and 1 deletions
|
@ -771,8 +771,8 @@ static int get_divemode(const char *divemodestring) {
|
|||
*/
|
||||
struct parse_event {
|
||||
const char *name;
|
||||
struct event ev;
|
||||
int has_divemode;
|
||||
struct event ev;
|
||||
};
|
||||
|
||||
static void parse_event_keyvalue(void *_parse, const char *key, const char *value)
|
||||
|
|
Loading…
Reference in a new issue