From f62a291281cc15c0537538d60c1f6536ffd6253a Mon Sep 17 00:00:00 2001 From: ZloyDyadka Date: Tue, 6 Jul 2021 16:35:38 +0300 Subject: [PATCH] Vips: cast go.int to c.INT in VipsVectorSetEnabled --- vips.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vips.go b/vips.go index 95f5b96..1d03c92 100644 --- a/vips.go +++ b/vips.go @@ -155,7 +155,7 @@ func VipsVectorSetEnabled(enable bool) { flag = 1 } - C.vips_vector_set_enabled(flag) + C.vips_vector_set_enabled(C.int(flag)) } // VipsDebugInfo outputs to stdout libvips collected data. Useful for debugging.