remove extra ';'.

This commit is contained in:
Tomoyuki Sahara
2014-07-22 23:55:25 +09:00
parent 8c34a8d561
commit 1768ee02e5
+1 -1
View File
@@ -92,7 +92,7 @@ mrb_file_s_unlink(mrb_state *mrb, mrb_value obj)
mrb_get_args(mrb, "*", &argv, &argc);
for (i = 0; i < argc; i++) {
pathv = mrb_convert_type(mrb, argv[i], MRB_TT_STRING, "String", "to_str");
path = mrb_string_value_cstr(mrb, &pathv);;
path = mrb_string_value_cstr(mrb, &pathv);
if (UNLINK(path) < 0) {
mrb_sys_fail(mrb, path);
}