From 15704da703e56af211e4a8dd771f48d4635900fb Mon Sep 17 00:00:00 2001 From: Claudiu Olteanu Date: Mon, 23 Mar 2015 20:11:57 +0200 Subject: [PATCH] Remove some white spaces Make this code compliant with CodingStyle Signed-off-by: Claudiu Olteanu Signed-off-by: Dirk Hohndel --- datatrak.c | 4 ++-- 1 file 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); }