From 6392ceabf71c3233b0f7f0172f662bd4a22cd534 Mon Sep 17 00:00:00 2001 From: Eric Gullufsen Date: Fri, 27 Sep 2024 12:04:49 -0400 Subject: [PATCH] raptor_world arg to raptor_free_world (instead of no args) --- lib/rdf/raptor/ffi/v2.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rdf/raptor/ffi/v2.rb b/lib/rdf/raptor/ffi/v2.rb index 3348b31..0822674 100644 --- a/lib/rdf/raptor/ffi/v2.rb +++ b/lib/rdf/raptor/ffi/v2.rb @@ -30,7 +30,7 @@ module V2 typedef :int, :raptor_version typedef :pointer, :raptor_iostream attach_function :raptor_new_world_internal, [:raptor_version], :raptor_world - attach_function :raptor_free_world, [], :void + attach_function :raptor_free_world, [:raptor_world], :void attach_function :raptor_alloc_memory, [:size_t], :pointer attach_function :raptor_calloc_memory, [:size_t, :size_t], :pointer attach_function :raptor_free_memory, [:pointer], :void