remove extra space in some error messages
This commit is contained in:
parent
8459c22c01
commit
d1c2430bf1
|
@ -1463,9 +1463,8 @@ char *scheme_make_arg_lines_string(const char *indent, int which, int argc, Sche
|
||||||
pos += plen;
|
pos += plen;
|
||||||
|
|
||||||
o = error_write_to_string_w_max(argv[i], len, &l);
|
o = error_write_to_string_w_max(argv[i], len, &l);
|
||||||
memcpy(other + pos, " ", 1);
|
memcpy(other + pos, o, l);
|
||||||
memcpy(other + pos + 1, o, l);
|
pos += l;
|
||||||
pos += l + 1;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
other[pos] = 0;
|
other[pos] = 0;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user