Merge pull request #362 from rhatdan/master

Vendor in ostree fixes
This commit is contained in:
Antonio Murdaca 2017-06-16 11:58:52 +02:00 committed by GitHub
commit d5e34c1b5e
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))
} }