libsysprof-analyze: fix type in constructor

This commit is contained in:
Christian Hergert
2023-07-08 11:57:57 -07:00
parent cbf12f07f8
commit 72c6b06102

View File

@ -321,7 +321,7 @@ sysprof_document_loader_new_for_fd (int fd,
{
g_autoptr(SysprofDocumentLoader) self = NULL;
self = g_object_new (SYSPROF_TYPE_SYMBOLIZER, NULL);
self = g_object_new (SYSPROF_TYPE_DOCUMENT_LOADER, NULL);
if (-1 == (self->fd = dup (fd)))
{