diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-01-22 22:16:21 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-01-22 22:16:21 +0100 |
commit | 10b9e68e606a36fdddf19d0c29eb792960a4939e (patch) | |
tree | aac318728a5837ad61019c04ec8da925353ef1b9 /tools | |
parent | a3c540c47303fa0204bc1e410b32b93a860eab5f (diff) | |
download | ffi-efl-10b9e68e606a36fdddf19d0c29eb792960a4939e.zip ffi-efl-10b9e68e606a36fdddf19d0c29eb792960a4939e.tar.gz |
tools/genruby: fix set_type, indirect type
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/genruby.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/genruby.rb b/tools/genruby.rb index dd0e8f2..7d516e4 100755 --- a/tools/genruby.rb +++ b/tools/genruby.rb @@ -92,7 +92,7 @@ TYPES_USAGE = {} # def set_type t, sym if TYPES[t].nil? - v = ( TYPES[sym].nil? ? ':'+sym.downcase : TYPES[sym][1..-1] ) + v = ( TYPES[sym].nil? ? ':'+sym.downcase : TYPES[sym] ) TYPES[t] = v puts " define type : #{t} => #{v}" return v |