diff options
author | Lionel Orry <lionel.orry@gmail.com> | 2011-05-02 09:59:38 +0200 |
---|---|---|
committer | jeremyz <jeremy@asynk.ch> | 2011-05-03 17:49:10 +0200 |
commit | 2527c06659f34daa5604f78f34f0a24e7efd7f39 (patch) | |
tree | 5789873283ece1e26b122f124eae4043166222d6 | |
parent | 9713cf1136c37cee1ad893b9443dadae1d9fc5d2 (diff) | |
download | ffi-efl-2527c06659f34daa5604f78f34f0a24e7efd7f39.zip ffi-efl-2527c06659f34daa5604f78f34f0a24e7efd7f39.tar.gz |
use a real variable instead of an uninitialized one
-rw-r--r-- | spec/ecore_getopt_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ecore_getopt_spec.rb b/spec/ecore_getopt_spec.rb index 6deb7cd..f41e08b 100644 --- a/spec/ecore_getopt_spec.rb +++ b/spec/ecore_getopt_spec.rb @@ -66,7 +66,7 @@ describe Efl::EcoreGetopt do # @p.append 'a', 'append', 'store append', :ecore_getopt_type_int @p.count 'k', 'count', 'store count' @p.value :intp, @values[:count] - @p.callback_args 'b', 'callback', 'callback full', @meta, @callback, @cb_data + @p.callback_args 'b', 'callback', 'callback full', @meta1, @callback, @cb_data @p.value :intp, @values[:callback] @p.create # puts @p.debug |