summaryrefslogtreecommitdiffhomepage
path: root/src/variable.c
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-05-23 03:31:55 +0900
committerYukihiro Matsumoto <[email protected]>2012-05-23 03:31:55 +0900
commit4523bee95357bed945a58462544441371160056f (patch)
treefc7fecb95769eee94f1596b13eb58472281ec656 /src/variable.c
parent714b358bb22c99bf653e21f4f9f6e22e24134b28 (diff)
downloadmruby-4523bee95357bed945a58462544441371160056f.tar.gz
mruby-4523bee95357bed945a58462544441371160056f.zip
cast style consistency
Diffstat (limited to 'src/variable.c')
-rw-r--r--src/variable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/variable.c b/src/variable.c
index e769eaba0..1f1a400cd 100644
--- a/src/variable.c
+++ b/src/variable.c
@@ -377,7 +377,7 @@ mrb_st_lookup(struct kh_iv *table, mrb_sym id, khiter_t *value)
khiter_t k;
if (table) {
- h = (khash_t(iv) *)table;
+ h = (khash_t(iv)*)table;
k = kh_get(iv, h, id);
if (k != kh_end(h)) {
if (value != 0) *value = k;//kh_value(h, k);