mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Make local helpers static
Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
caf4d85d0a
commit
eae1624f24
2 changed files with 2 additions and 2 deletions
|
@ -197,7 +197,7 @@ void fill_default_cylinder(cylinder_t *cyl)
|
|||
}
|
||||
}
|
||||
|
||||
int add_gas(struct dive *dive, int o2, int he)
|
||||
static int add_gas(struct dive *dive, int o2, int he)
|
||||
{
|
||||
int i;
|
||||
struct gasmix *mix;
|
||||
|
|
|
@ -292,7 +292,7 @@ void get_selected_dives_text(char *buffer, int size)
|
|||
}
|
||||
}
|
||||
|
||||
bool is_gas_used(struct dive *dive, int idx)
|
||||
static bool is_gas_used(struct dive *dive, int idx)
|
||||
{
|
||||
struct divecomputer *dc = &dive->dc;
|
||||
bool firstGasExplicit = FALSE;
|
||||
|
|
Loading…
Reference in a new issue