mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
Fix: Use correct constructor
This commit is contained in:
parent
965c5e52d0
commit
d2f7b9c112
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user