summaryrefslogtreecommitdiffstats
path: root/datatrak.c
diff options
context:
space:
mode:
authorGravatar Claudiu Olteanu <olteanu.claudiu@ymail.com>2015-03-23 20:11:57 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-03-24 09:45:39 -0700
commit15704da703e56af211e4a8dd771f48d4635900fb (patch)
tree2283816048a835d55c47d8641827ccd729d8444d /datatrak.c
parent1e22f5ea29c9caf9d943c69029c15056de4226a6 (diff)
downloadsubsurface-15704da703e56af211e4a8dd771f48d4635900fb.tar.gz
Remove some white spaces
Make this code compliant with CodingStyle Signed-off-by: Claudiu Olteanu <olteanu.claudiu@ymail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
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);
}