mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Clean up signedness confusion in divelist.c
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
f2c40907c5
commit
d2f7732d22
1 changed files with 2 additions and 1 deletions
|
@ -205,7 +205,8 @@ int const cns_table[][3] = {
|
|||
* so we calculated it "by hand" */
|
||||
static int calculate_cns(struct dive *dive)
|
||||
{
|
||||
int i, j, divenr;
|
||||
int i, divenr;
|
||||
size_t j;
|
||||
double cns = 0.0;
|
||||
struct divecomputer *dc = &dive->dc;
|
||||
struct dive *prev_dive;
|
||||
|
|
Loading…
Add table
Reference in a new issue