DLF import: Remove old debug print

Signed-off-by: Anton Lundin <glance@acc.umu.se>
This commit is contained in:
Anton Lundin 2018-09-12 13:36:12 +02:00 committed by Dirk Hohndel
parent 8c848021b3
commit ecbfea3568

View file

@ -2095,9 +2095,6 @@ int parse_dlf_buffer(unsigned char *buffer, size_t size, struct dive_table *tabl
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("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);
break;
default:
break;