summaryrefslogtreecommitdiffstats
path: root/subsurface-core/statistics.h
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2016-03-09 18:55:04 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-03-09 21:47:22 -0800
commit69204804630e51ee7c1e9fddd3620efc327d14a4 (patch)
tree98efe4ac4a09636464a4493afe5faa37489d88c6 /subsurface-core/statistics.h
parent7d1c2a142fcae4e4085a9f04d0c7a02d4089b6c7 (diff)
downloadsubsurface-69204804630e51ee7c1e9fddd3620efc327d14a4.tar.gz
Clean up signedness confusion in statistics.c
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurface-core/statistics.h')
-rw-r--r--subsurface-core/statistics.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/subsurface-core/statistics.h b/subsurface-core/statistics.h
index 890e6e53c..015c3481e 100644
--- a/subsurface-core/statistics.h
+++ b/subsurface-core/statistics.h
@@ -44,7 +44,7 @@ extern stats_t *stats_by_type;
extern char *get_time_string_s(int seconds, int maxdays, bool freediving);
extern char *get_minutes(int seconds);
extern void process_all_dives(struct dive *dive, struct dive **prev_dive);
-extern void get_selected_dives_text(char *buffer, int size);
+extern void get_selected_dives_text(char *buffer, size_t size);
extern void get_gas_used(struct dive *dive, volume_t gases[MAX_CYLINDERS]);
extern void process_selected_dives(void);
void selected_dives_gas_parts(volume_t *o2_tot, volume_t *he_tot);