From 1ad872ac5f21a75b397ac8ed6544ef6f967d633f Mon Sep 17 00:00:00 2001 From: Anton Lundin Date: Mon, 10 Sep 2018 20:27:09 +0200 Subject: DLF import: Name dive site The UI doesn't behave all that nice without name on the dive site. Signed-off-by: Anton Lundin --- core/parse-xml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/parse-xml.c b/core/parse-xml.c index b661b29c2..8cb795545 100644 --- a/core/parse-xml.c +++ b/core/parse-xml.c @@ -2075,7 +2075,7 @@ int parse_dlf_buffer(unsigned char *buffer, size_t size, struct dive_table *tabl /* Measure GPS */ cur_latitude.udeg = (int)((ptr[7] << 24) + (ptr[6] << 16) + (ptr[5] << 8) + (ptr[4] << 0)); cur_longitude.udeg = (int)((ptr[11] << 24) + (ptr[10] << 16) + (ptr[9] << 8) + (ptr[8] << 0)); - cur_dive->dive_site_uuid = create_dive_site_with_gps(NULL, cur_latitude, cur_longitude, cur_dive->when); + cur_dive->dive_site_uuid = create_dive_site_with_gps("DLF imported", cur_latitude, cur_longitude, cur_dive->when); const char * coords = printGPSCoords(cur_latitude.udeg, cur_longitude.udeg); printf("gps: %s\n", coords); free((void *)coords); -- cgit v1.2.3-70-g09d2