lib/repo-file: Add casts to appease GLib g_object_ref cast PR

This fixes the build with https://bugzilla.gnome.org/show_bug.cgi?id=790697

Closes: #1363
Approved by: jlebon
This commit is contained in:
Colin Walters 2017-12-05 10:32:07 -05:00 committed by Atomic Bot
parent 9bb59511ae
commit 9917887a3f
1 changed files with 2 additions and 2 deletions

View File

@ -508,7 +508,7 @@ ostree_repo_file_get_parent (GFile *file)
{
OstreeRepoFile *self = OSTREE_REPO_FILE (file);
return g_object_ref (self->parent);
return (GFile*)g_object_ref (self->parent);
}
static GFile *
@ -621,7 +621,7 @@ ostree_repo_file_resolve_relative_path (GFile *file,
g_assert (*relative_path == '/');
if (strcmp (relative_path, "/") == 0)
return g_object_ref (ostree_repo_file_get_root (self));
return (GFile*)g_object_ref (ostree_repo_file_get_root (self));
if (self->parent)
return ostree_repo_file_resolve_relative_path ((GFile*)ostree_repo_file_get_root (self),