summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/equipment.h2
-rw-r--r--core/parse.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/core/equipment.h b/core/equipment.h
index 687e794a5..2711d7703 100644
--- a/core/equipment.h
+++ b/core/equipment.h
@@ -50,6 +50,8 @@ typedef struct
const char *description; /* "integrated", "belt", "ankle" */
} weightsystem_t;
+static const weightsystem_t empty_weightsystem = { { 0 }, 0 };
+
/* Table of weightsystems. Attention: this stores weightsystems,
* *not* pointers * to weightsystems. This has two crucial
* consequences:
diff --git a/core/parse.c b/core/parse.c
index 30d6a8ad5..56e5928fc 100644
--- a/core/parse.c
+++ b/core/parse.c
@@ -298,8 +298,7 @@ void cylinder_end(struct parser_state *state)
void ws_start(struct parser_state *state)
{
- weightsystem_t w = { {0}, "" };
- add_cloned_weightsystem(&state->cur_dive->weightsystems, w);
+ add_cloned_weightsystem(&state->cur_dive->weightsystems, empty_weightsystem);
}
void ws_end(struct parser_state *state)