Put space between entries so they are separated.

FIXME: should use format as in filters.
This commit is contained in:
Pavel Machek 2000-04-17 11:42:34 +00:00
parent 4444ed2b26
commit 5a2455886d

View file

@ -33,7 +33,8 @@ int_set_format(struct adata *set, byte *buf, unsigned int size)
strcpy(buf, "...");
return;
}
buf += bsprintf(buf, "%d:%d", *z/65536, *z & 0xffff);
/* FIXME: should not we use same syntax as in filters (i.e. (x,y) )? */
buf += bsprintf(buf, "%d:%d ", *z/65536, *z & 0xffff);
z++;
}
*buf = 0;