diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-12-17 09:12:08 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-12-17 10:25:01 -0800 |
commit | 6b80b41c7cc8b56ea70447dc4dfaf250fa6f4743 (patch) | |
tree | b25431c0cbb694695b69feaee5f0c5fafd22586c /core/import-suunto.c | |
parent | 648fec7a3d0b65afdc95c71a638d0f792b93adf2 (diff) | |
download | subsurface-6b80b41c7cc8b56ea70447dc4dfaf250fa6f4743.tar.gz |
Cleanup: durations are now signed
Somehow a whitespace fix snuck in here. Oops.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/import-suunto.c')
-rw-r--r-- | core/import-suunto.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/import-suunto.c b/core/import-suunto.c index 90ceda1c4..35a2c86de 100644 --- a/core/import-suunto.c +++ b/core/import-suunto.c @@ -160,7 +160,7 @@ extern int dm4_dive(void *param, int columns, char **data, char **column) { (void) columns; (void) column; - unsigned int i; + int i; int interval, retval = 0; sqlite3 *handle = (sqlite3 *)param; float *profileBlob; @@ -363,7 +363,7 @@ extern int dm5_dive(void *param, int columns, char **data, char **column) { (void) columns; (void) column; - unsigned int i; + int i; int interval, retval = 0, block_size; sqlite3 *handle = (sqlite3 *)param; unsigned const char *sampleBlob; |