summaryrefslogtreecommitdiffstats
path: root/datatrak.c
diff options
context:
space:
mode:
Diffstat (limited to 'datatrak.c')
-rw-r--r--datatrak.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/datatrak.c b/datatrak.c
index f98aebd16..537b09db7 100644
--- a/datatrak.c
+++ b/datatrak.c
@@ -401,7 +401,7 @@ static struct dive dt_dive_parser(FILE *archivo, struct dive *dt_dive)
/*
* Dive Type 2 - Bit table, use tags again
*/
- read_bytes (1);
+ read_bytes(1);
byte = byte_to_bits(tmp_1byte);
if (byte[0] != 0) {
taglist_add_tag(&dt_dive->tag_list, strdup("nitrox"));
@@ -679,5 +679,5 @@ void datatrak_import(const char *file, struct dive_table *table)
taglist_cleanup(&g_tag_list);
fclose(archivo);
sort_table(table);
- free (fileheader);
+ free(fileheader);
}