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

@@ -31,7 +31,7 @@ github.com/xeipuuv/gojsonschema master
github.com/xeipuuv/gojsonreference master github.com/xeipuuv/gojsonreference master
github.com/xeipuuv/gojsonpointer master github.com/xeipuuv/gojsonpointer master
go4.org master https://github.com/camlistore/go4 go4.org master https://github.com/camlistore/go4
github.com/ostreedev/ostree-go 61532f383f1f48e5c27080b0b9c8b022c3706a97 github.com/ostreedev/ostree-go 75b58d2519fcee494d970944524ae124b2631845
# -- end OCI image validation requirements # -- end OCI image validation requirements
github.com/mtrmac/gpgme master github.com/mtrmac/gpgme master
# openshift/origin' k8s dependencies as of OpenShift v1.1.5 # openshift/origin' k8s dependencies as of OpenShift v1.1.5

View File

@@ -66,11 +66,11 @@ func (v *GObject) Unref() {
} }
func (v *GObject) RefSink() { 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 { 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)) return GoBool(GBoolean(c))
} }