Vendor in ostree fixes

This will fix the compiler issues.

Signed-off-by: Dan Walsh <dwalsh@redhat.com>
This commit is contained in:
Dan Walsh
2017-06-16 05:38:19 -04:00
parent 455177e749
commit 5e586f3781
2 changed files with 3 additions and 3 deletions

View File

@@ -66,11 +66,11 @@ func (v *GObject) Unref() {
}
func (v *GObject) RefSink() {
C.g_object_ref_sink(v.native())
C.g_object_ref_sink(C.gpointer(v.native()))
}
func (v *GObject) IsFloating() bool {
c := C.g_object_is_floating(v.native())
c := C.g_object_is_floating(C.gpointer(v.native()))
return GoBool(GBoolean(c))
}