From d2f7b9c1123994ed67430a97b76ede0eef027902 Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Sat, 24 Oct 2020 11:14:49 +0000 Subject: [PATCH] Fix: Use correct constructor --- src/navigation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/navigation.c b/src/navigation.c index dfdba864..b870fd63 100644 --- a/src/navigation.c +++ b/src/navigation.c @@ -54,7 +54,7 @@ mount_identifier_t * mount_identifier_new(const char *mount) if (!mount) return NULL; - n = refobject_new_ext(mount_identifier_t, NULL, mount, NULL); + n = refobject_new__new(mount_identifier_t, NULL, mount, NULL); if (!n) return NULL;