summaryrefslogtreecommitdiff
path: root/struct.c
diff options
context:
space:
mode:
Diffstat (limited to 'struct.c')
-rw-r--r--struct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/struct.c b/struct.c
index 7e97e170f5..083bc83fe4 100644
--- a/struct.c
+++ b/struct.c
@@ -540,7 +540,7 @@ rb_struct_select(argc, argv, s)
rb_raise(rb_eArgError, "wrong number arguments(%d for 0)", argc);
}
for (i = 0; i < RSTRUCT(s)->len; i++) {
- if (RTEST(rb_yield(RARRAY(s)->ptr[i]))) {
+ if (RTEST(rb_yield(RSTRUCT(s)->ptr[i]))) {
rb_ary_push(result, RSTRUCT(s)->ptr[i]);
}
}