summaryrefslogtreecommitdiffstats
path: root/core/import-cobalt.c
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2019-08-04 18:59:14 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-11-09 19:19:04 +0100
commit8df3705152aa32d8551b5fb7db08e0c8e442b480 (patch)
tree60879e7d4af85d71d64885ea903ac234a09bffda /core/import-cobalt.c
parent7c9f46acd202121e67557bb634961ef17a9f6c1f (diff)
downloadsubsurface-8df3705152aa32d8551b5fb7db08e0c8e442b480.tar.gz
Cleanup: return cylinder from cylinder_start() in parser
Most callers of this function accessed the newly generated cylinder immediately after calling this function. Thus, for convenience, return the added cylinder. This avoids a number of verbose expressions. On the flip side, cylinder_start() now has to be cast to function returning void in a the "nesting" function table. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/import-cobalt.c')
-rw-r--r--core/import-cobalt.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/import-cobalt.c b/core/import-cobalt.c
index 967f7df51..28f6968a3 100644
--- a/core/import-cobalt.c
+++ b/core/import-cobalt.c
@@ -39,8 +39,7 @@ static int cobalt_cylinders(void *param, int columns, char **data, char **column
struct parser_state *state = (struct parser_state *)param;
cylinder_t *cyl;
- cylinder_start(state);
- cyl = &state->cur_dive->cylinders.cylinders[state->cur_dive->cylinders.nr - 1];
+ cyl = cylinder_start(state);
if (data[0])
cyl->gasmix.o2.permille = atoi(data[0]) * 10;
if (data[1])