mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 14:25:27 +00:00
Clean up signedness confusion in tankitem.cpp
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
28100e8b7e
commit
032de3549d
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ void TankItem::modelDataChanged(const QModelIndex &topLeft, const QModelIndex &b
|
|||
|
||||
// walk the list and figure out which tanks go where
|
||||
struct plot_data *entry = pInfoEntry;
|
||||
int cylIdx = entry->cylinderindex;
|
||||
unsigned int cylIdx = entry->cylinderindex;
|
||||
int i = -1;
|
||||
int startTime = 0;
|
||||
struct gasmix *gas = &diveCylinderStore.cylinder[cylIdx].gasmix;
|
||||
|
|
Loading…
Add table
Reference in a new issue