diff options
Diffstat (limited to 'core/dive.h')
-rw-r--r-- | core/dive.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/dive.h b/core/dive.h index 8458a3ae3..1b58eef4c 100644 --- a/core/dive.h +++ b/core/dive.h @@ -294,7 +294,8 @@ typedef struct dive_trip char *notes; struct dive *dives; int nrdives; - int index; + /* Used by the io-routines to mark trips that have already been written. */ + bool saved; unsigned expanded : 1, selected : 1, autogen : 1, fixup : 1; struct dive_trip *next; } dive_trip_t; |