summaryrefslogtreecommitdiffstats
path: root/dive.h
diff options
context:
space:
mode:
authorGravatar Anton Lundin <glance@acc.umu.se>2014-12-28 23:38:41 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-12-28 20:19:19 -0800
commite86d298734ce76b9c66cc57dca68919fffb68789 (patch)
tree8d192e23eb3544a5c08f3d60e4069774d67c6e14 /dive.h
parent78d782f3e9a30aa8080e4e8ffb90e1fc5aa8050d (diff)
downloadsubsurface-e86d298734ce76b9c66cc57dca68919fffb68789.tar.gz
Switch to using unsigned char in DLF import
Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dive.h')
-rw-r--r--dive.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dive.h b/dive.h
index 30aa8d9a9..c814fb488 100644
--- a/dive.h
+++ b/dive.h
@@ -627,7 +627,7 @@ extern int parse_dm4_buffer(sqlite3 *handle, const char *url, const char *buf, i
extern int parse_dm5_buffer(sqlite3 *handle, const char *url, const char *buf, int size, struct dive_table *table);
extern int parse_shearwater_buffer(sqlite3 *handle, const char *url, const char *buf, int size, struct dive_table *table);
extern int parse_cobalt_buffer(sqlite3 *handle, const char *url, const char *buf, int size, struct dive_table *table);
-extern int parse_dlf_buffer(char *buffer, size_t size);
+extern int parse_dlf_buffer(unsigned char *buffer, size_t size);
extern int parse_file(const char *filename);
extern int parse_csv_file(const char *filename, int time, int depth, int temp, int po2f, int cnsf, int ndlf, int ttsf, int stopdepthf, int pressuref, int sepidx, const char *csvtemplate, int units);