summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/divelist.c2
-rw-r--r--core/load-git.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/divelist.c b/core/divelist.c
index f088195fd..02e5cfc4a 100644
--- a/core/divelist.c
+++ b/core/divelist.c
@@ -1488,7 +1488,7 @@ void clear_dive_file_data()
clear_dive(&displayed_dive);
reset_min_datafile_version();
- saved_git_id = "";
+ clear_git_id();
}
bool dive_less_than(const struct dive *a, const struct dive *b)
diff --git a/core/load-git.c b/core/load-git.c
index 0915a459e..2ff96ef0b 100644
--- a/core/load-git.c
+++ b/core/load-git.c
@@ -1625,7 +1625,7 @@ void clear_git_id(void)
saved_git_id = NULL;
}
-void set_git_id(const struct git_oid * id)
+void set_git_id(const struct git_oid *id)
{
static char git_id_buffer[GIT_OID_HEXSZ + 1];