summaryrefslogtreecommitdiffhomepage
path: root/src/dump.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-05-22 08:20:54 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-05-22 08:20:54 +0900
commit79a6574ac8b02920f1564e6b9c13e00ad4a92ec6 (patch)
treef63f16d102009b885d7cd74b9da7549237904f9c /src/dump.c
parent3fa19357b38a69a6088b0dd4f15b42f0e353ada3 (diff)
downloadmruby-79a6574ac8b02920f1564e6b9c13e00ad4a92ec6.tar.gz
mruby-79a6574ac8b02920f1564e6b9c13e00ad4a92ec6.zip
remove unnecessary assignment; ref #2301
Diffstat (limited to 'src/dump.c')
-rw-r--r--src/dump.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/dump.c b/src/dump.c
index 6098825c3..1acb466a0 100644
--- a/src/dump.c
+++ b/src/dump.c
@@ -536,7 +536,6 @@ get_filename_table_size(mrb_state *mrb, mrb_irep *irep, mrb_sym **fp, uint16_t *
}
for (i=0; i<irep->rlen; i++) {
size += get_filename_table_size(mrb, irep->reps[i], fp, lp);
- filenames = *fp;
}
return size;
}