Put space between entries so they are separated.
FIXME: should use format as in filters.
This commit is contained in:
parent
4444ed2b26
commit
5a2455886d
1 changed files with 2 additions and 1 deletions
|
@ -33,7 +33,8 @@ int_set_format(struct adata *set, byte *buf, unsigned int size)
|
||||||
strcpy(buf, "...");
|
strcpy(buf, "...");
|
||||||
return;
|
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++;
|
z++;
|
||||||
}
|
}
|
||||||
*buf = 0;
|
*buf = 0;
|
||||||
|
|
Loading…
Reference in a new issue