diff --git a/nest/a-set.c b/nest/a-set.c index 1d2cebff..fe5598e2 100644 --- a/nest/a-set.c +++ b/nest/a-set.c @@ -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;