diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-02-09 18:35:20 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-02-09 18:35:20 +0900 |
| commit | 19a08b8455c02eaef06d11cdc07b8011df6acd6d (patch) | |
| tree | 5159549c6965c6ef10e4db7c6862999bdadcf7a5 /src/hash.c | |
| parent | d8a5f1205338f8ed664745ef74c825b74b9bb081 (diff) | |
| parent | 4507985c3ea2b3a7d14745f1f432e544ddeafe93 (diff) | |
| download | mruby-19a08b8455c02eaef06d11cdc07b8011df6acd6d.tar.gz mruby-19a08b8455c02eaef06d11cdc07b8011df6acd6d.zip | |
Merge pull request #1674 from cremno/mrb_bool-FALSE-TRUE
use mrb_bool, FALSE and TRUE more
Diffstat (limited to 'src/hash.c')
| -rw-r--r-- | src/hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash.c b/src/hash.c index e1ff3599f..2b98e5fd1 100644 --- a/src/hash.c +++ b/src/hash.c @@ -998,7 +998,7 @@ mrb_hash_has_value(mrb_state *mrb, mrb_value hash) } static mrb_value -hash_equal(mrb_state *mrb, mrb_value hash1, mrb_value hash2, int eql) +hash_equal(mrb_state *mrb, mrb_value hash1, mrb_value hash2, mrb_bool eql) { khash_t(ht) *h1, *h2; |
