From 69ae0f0f42f732687199432766ba16b8b20f14c0 Mon Sep 17 00:00:00 2001 From: yui-knk Date: Thu, 21 Dec 2017 07:09:03 +0000 Subject: iseq.c (rb_iseq_code_range): Remove needless `;` git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61384 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- iseq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'iseq.c') diff --git a/iseq.c b/iseq.c index e9d7d85301..96a8b786e6 100644 --- a/iseq.c +++ b/iseq.c @@ -776,7 +776,7 @@ rb_iseq_code_range(const rb_iseq_t *iseq, int *first_lineno, int *first_column, { if (first_lineno) *first_lineno = iseq->body->location.code_range.first_loc.lineno; if (first_column) *first_column = iseq->body->location.code_range.first_loc.column; - if (last_lineno) *last_lineno = iseq->body->location.code_range.last_loc.lineno;; + if (last_lineno) *last_lineno = iseq->body->location.code_range.last_loc.lineno; if (last_column) *last_column = iseq->body->location.code_range.last_loc.column; } -- cgit v1.2.3