1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-16 06:15:24 +00:00

Fix: Use correct constructor

This commit is contained in:
Philipp Schafft 2020-10-24 11:14:49 +00:00
parent 965c5e52d0
commit d2f7b9c112

View File

@ -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;