Cleanup: remove unsused flags in struct dive_trip

Usage of the flags expanded, selected and fixup was removed some
time ago. Remove the flags too.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2018-11-07 23:28:21 +01:00 committed by Dirk Hohndel
parent 63b47ff530
commit 282e6a9f48

View file

@ -295,7 +295,7 @@ typedef struct dive_trip
int nrdives, showndives;
/* Used by the io-routines to mark trips that have already been written. */
bool saved;
unsigned expanded : 1, selected : 1, autogen : 1, fixup : 1;
bool autogen;
struct dive_trip *next;
} dive_trip_t;