diff options
author | glerch <guido.lerch@gmail.com> | 2015-09-14 22:29:18 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-09-14 13:35:29 -0700 |
commit | ebf26e067d9f6f43ae4066d2c329bd3472e54520 (patch) | |
tree | e61723287dfbb7698c3fe3e63c04dee3687eec80 /uemis-downloader.c | |
parent | 277dbf2a67535dc4c17085c6c7263e5b8a57bc99 (diff) | |
download | subsurface-ebf26e067d9f6f43ae4066d2c329bd3472e54520.tar.gz |
Uemis - bugfix wrong variable addressing
Made a mistage when adressing a referenced variable
Signed-off-by: glerch <guido.lerch@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'uemis-downloader.c')
-rw-r--r-- | uemis-downloader.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/uemis-downloader.c b/uemis-downloader.c index 37b29c44d..5ddee7a0c 100644 --- a/uemis-downloader.c +++ b/uemis-downloader.c @@ -1070,7 +1070,6 @@ static void get_uemis_divespot(const char *mountpath, int divespot_id, struct di static bool get_matching_dive(int idx, int *dive_to_read, int *last_found_log_file_nr, int *deleted_files, char *newmax, int *uemis_mem_status, struct device_data_t *data, const char* mountpath, const char deviceidnr) { struct dive *dive = data->download_table->dives[idx]; - const char *dTime = get_dive_date_c_string(dive->when); char log_file_no_to_find[20]; char dive_to_read_buf[10]; bool found = false; @@ -1113,7 +1112,7 @@ static bool get_matching_dive(int idx, int *dive_to_read, int *last_found_log_fi #if UEMIS_DEBUG & 2 fprintf(debugfile, "TRY matching divelog id %d from %s with dive details %d but details are deleted\n", dive->dc.diveid, dTime, iDiveToRead); #endif - deleted_files++; + *deleted_files = *deleted_files + 1; /* mark this log entry as deleted and cleanup later, otherwise we mess up our array */ dive->downloaded = false; #if UEMIS_DEBUG & 2 @@ -1141,7 +1140,7 @@ static bool get_matching_dive(int idx, int *dive_to_read, int *last_found_log_fi /* decrement iDiveToRead by the amount of deleted entries found to assure * we are not missing any valid matches when processing subsequent logs */ *dive_to_read = (dive_to_read - deleted_files > 0 ? dive_to_read - deleted_files : 0); - deleted_files = 0; + *deleted_files = 0; if (*uemis_mem_status == UEMIS_MEM_FULL) /* game over, not enough memory left */ return false; |