diff options
| author | Ryunosuke SATO <[email protected]> | 2012-11-30 22:42:25 +0900 |
|---|---|---|
| committer | Ryunosuke SATO <[email protected]> | 2012-11-30 22:43:53 +0900 |
| commit | ee0563823d54b507c0dfdce4fbdb20c80fe3aadc (patch) | |
| tree | dc1e543d2259f7a970d59723678d4a3110608ac1 /src/variable.c | |
| parent | 2ea245db3dd439cf179bbe120177ddcd086e4707 (diff) | |
| download | mruby-ee0563823d54b507c0dfdce4fbdb20c80fe3aadc.tar.gz mruby-ee0563823d54b507c0dfdce4fbdb20c80fe3aadc.zip | |
Stop warning: extra ';' outside of a function
Diffstat (limited to 'src/variable.c')
| -rw-r--r-- | src/variable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/variable.c b/src/variable.c index 7d583da40..6907a8e2a 100644 --- a/src/variable.c +++ b/src/variable.c @@ -256,7 +256,7 @@ iv_free(mrb_state *mrb, iv_tbl *t) #endif KHASH_DECLARE(iv, mrb_sym, mrb_value, 1) -KHASH_DEFINE(iv, mrb_sym, mrb_value, 1, kh_int_hash_func, kh_int_hash_equal); +KHASH_DEFINE(iv, mrb_sym, mrb_value, 1, kh_int_hash_func, kh_int_hash_equal) typedef struct iv_tbl { khash_t(iv) h; |
