diff options
author | Anton Lundin <glance@acc.umu.se> | 2013-12-07 23:54:17 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-12-08 09:41:54 +0100 |
commit | eae1624f2472abc3700dfdb9835da4e59dbff517 (patch) | |
tree | 850cb1bbae26b495114f789cd65e4574db9fa6d0 /statistics.c | |
parent | caf4d85d0a7581dfbfc456ff7c2544466dd44b8a (diff) | |
download | subsurface-eae1624f2472abc3700dfdb9835da4e59dbff517.tar.gz |
Make local helpers static
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'statistics.c')
-rw-r--r-- | statistics.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/statistics.c b/statistics.c index 18666bda0..0c823b1d8 100644 --- a/statistics.c +++ b/statistics.c @@ -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; |