mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 22:43:25 +00:00
cleanup: fix unitialized value
Fixes CID 355179 Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
a8e2aef785
commit
93ab1232f0
1 changed files with 2 additions and 1 deletions
|
@ -198,7 +198,8 @@ inline DiveField::DiveField(int flags) :
|
|||
tags((flags & TAGS) != 0),
|
||||
mode((flags & MODE) != 0),
|
||||
notes((flags & NOTES) != 0),
|
||||
salinity((flags & SALINITY) != 0)
|
||||
salinity((flags & SALINITY) != 0),
|
||||
invalid((flags & INVALID) != 0)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue