revert overflow code in sitesToString since we now prune dead buddies from values

This commit is contained in:
Joel Dice 2009-01-11 16:46:22 -07:00
parent 05bd86e2ed
commit 85ac9b9c71

View File

@ -1763,13 +1763,6 @@ sitesToString(Context* c, Value* v, char* buffer, unsigned size)
unsigned total = 0;
Value* p = v;
do {
if (size <= total + 32) {
assert(c, size > total + 4);
memcpy(buffer + total, "...", 3);
total += 3;
break;
}
if (total) {
assert(c, size > total + 2);
memcpy(buffer + total, "; ", 2);