remove extra space in some error messages

This commit is contained in:
Matthew Flatt 2012-06-03 06:35:37 +08:00
parent 8459c22c01
commit d1c2430bf1

View File

@ -1463,9 +1463,8 @@ char *scheme_make_arg_lines_string(const char *indent, int which, int argc, Sche
pos += plen;
o = error_write_to_string_w_max(argv[i], len, &l);
memcpy(other + pos, " ", 1);
memcpy(other + pos + 1, o, l);
pos += l + 1;
memcpy(other + pos, o, l);
pos += l;
}
}
other[pos] = 0;