mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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>
This commit is contained in:
parent
7c9f46acd2
commit
8df3705152
7 changed files with 15 additions and 20 deletions
|
|
@ -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])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue