aboutsummaryrefslogtreecommitdiffstats
path: root/vm_insnhelper.c
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-09-17 13:46:07 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-09-17 13:46:07 +0000
commit208e5593f741e9321efb53e227c4a9fdee140d90 (patch)
treea90eff422de73e736de3b2467da9b6c5d9bc3602 /vm_insnhelper.c
parent57b150cfb3e62151372fc5d01d386518071b05f8 (diff)
downloadruby-208e5593f741e9321efb53e227c4a9fdee140d90.tar.gz
* vm_insnhelper.c (vm_throw_start): Remove too much ";"
[fix GH-1432] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56179 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_insnhelper.c')
-rw-r--r--vm_insnhelper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index b4db670b74..e17f9ba382 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -1039,7 +1039,7 @@ vm_throw_start(rb_thread_t *const th, rb_control_frame_t *const reg_cfp, enum ru
int i;
for (i=0; i<ct_size; i++) {
- const struct iseq_catch_table_entry * const entry = &ct->entries[i];;
+ const struct iseq_catch_table_entry * const entry = &ct->entries[i];
if (entry->type == CATCH_TYPE_BREAK && entry->start < epc && entry->end >= epc) {
if (entry->cont == epc) { /* found! */