summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy.zurcher@heraeus.com>2011-04-19 13:35:48 +0200
committerJérémy Zurcher <jeremy.zurcher@heraeus.com>2011-04-19 13:35:48 +0200
commit3cdd241fe1f0ec86642e647624ce42e25e37f01f (patch)
tree1d95e2cc5695c82dd312f5112424727fc86bb7ef /tools
parent46fcb605893e08e5430520f52d5777c43f01b4cc (diff)
downloadffi-efl-3cdd241fe1f0ec86642e647624ce42e25e37f01f.zip
ffi-efl-3cdd241fe1f0ec86642e647624ce42e25e37f01f.tar.gz
fix (void) function argument
Diffstat (limited to 'tools')
-rwxr-xr-xtools/genruby.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/genruby.rb b/tools/genruby.rb
index 7432ffd..0942e1f 100755
--- a/tools/genruby.rb
+++ b/tools/genruby.rb
@@ -118,7 +118,7 @@ end
#
def get_type_from_arg arg
if arg=~ /^\s*void\s*$/
- return get_type 'void'
+ return ''
end
if arg =~ /\.\.\./
return '... FIXME'