diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-05-31 16:09:14 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-06-19 13:11:10 -0700 |
commit | 7f4d9db962e73aa5d5089c43c99b78b3690ffb87 (patch) | |
tree | 87e143b80ed394fc321765885a75cac229bf9f18 /core/parse.h | |
parent | f1c2cd375e295730d92e23093e44777baf838f1d (diff) | |
download | subsurface-7f4d9db962e73aa5d5089c43c99b78b3690ffb87.tar.gz |
Cleanup: move trip-related functions into own translation unit
These functions were spread out over dive.c and divelist.c.
Move them into their own file to make all this a bit less monolithic.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/parse.h')
-rw-r--r-- | core/parse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/parse.h b/core/parse.h index 8aaef399e..bc955dece 100644 --- a/core/parse.h +++ b/core/parse.h @@ -46,7 +46,7 @@ struct parser_state { struct dive *cur_dive; /* owning */ struct dive_site *cur_dive_site; /* owning */ location_t cur_location; - dive_trip_t *cur_trip; /* owning */ + struct dive_trip *cur_trip; /* owning */ struct sample *cur_sample; /* non-owning */ struct picture *cur_picture; /* owning */ char *country, *city; /* owning */ |