diff options
Diffstat (limited to 'uemis-downloader.c')
-rw-r--r-- | uemis-downloader.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uemis-downloader.c b/uemis-downloader.c index 91eae3145..9b54b0f3c 100644 --- a/uemis-downloader.c +++ b/uemis-downloader.c @@ -145,7 +145,7 @@ static struct dive *uemis_start_dive(uint32_t deviceid) /* send text to the importer progress bar */ static void uemis_info(const char *fmt, ...) { - static char buffer[40]; + static char buffer[256]; va_list ap; va_start(ap, fmt); @@ -544,7 +544,7 @@ static void parse_divespot(char *buf) char *bp = buf + 1; char *tp = next_token(&bp); char *tag, *type, *val; - char locationstring[255] = ""; + char locationstring[1024] = ""; int divespot, len; double latitude, longitude; |