summaryrefslogtreecommitdiffstats
path: root/lib/efl/ecore_getopt.rb
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-05-09 14:07:33 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2011-05-09 14:07:33 +0200
commite8e6c410e0f10cb7e76e59f21dcdc671aff88170 (patch)
treef8539f7abca6bda7c5b033e0ca37a72793f392e0 /lib/efl/ecore_getopt.rb
parent601f74881e06a85e57d9799c57512f8b587b59fd (diff)
downloadffi-efl-e8e6c410e0f10cb7e76e59f21dcdc671aff88170.zip
ffi-efl-e8e6c410e0f10cb7e76e59f21dcdc671aff88170.tar.gz
bugfix ecore-1 : ecore_getopt_callback_ecore_evas_list_engines returns :eina_bool instead of :uchar
Diffstat (limited to 'lib/efl/ecore_getopt.rb')
-rw-r--r--lib/efl/ecore_getopt.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efl/ecore_getopt.rb b/lib/efl/ecore_getopt.rb
index 5264597..14e5f89 100644
--- a/lib/efl/ecore_getopt.rb
+++ b/lib/efl/ecore_getopt.rb
@@ -228,7 +228,7 @@ module Efl
self << [ short, long, help, FFI::Pointer::NULL, :ecore_getopt_action_count, [:dummy,FFI::Pointer::NULL] ]
end
def callback_full short, long, help, meta, cb, data, arg_req, def_val
- self << [ short, long, help, meta, :ecore_getopt_action_callback, [:callback, [cb, data, arg_req,def_val] ] ]
+ self << [ short, long, help, meta, :ecore_getopt_action_callback, [:callback, [cb, data, arg_req, def_val] ] ]
end
def callback_noargs short, long, help, cb, data
callback_full short, long, help, FFI::Pointer::NULL, cb, data, :ecore_getopt_desc_arg_requirement_no, FFI::Pointer::NULL