diff options
-rw-r--r-- | lib/efl/ffi.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efl/ffi.rb b/lib/efl/ffi.rb index 9425fd3..bcd6777 100644 --- a/lib/efl/ffi.rb +++ b/lib/efl/ffi.rb @@ -12,7 +12,7 @@ module Efl def attach_fcts fcts fcts.each do |func| begin - attach_function *func + attach_function(*func) rescue Object => e puts "Could not attach #{func} #{e.message}" end |