diff options
Diffstat (limited to 'nest')
-rw-r--r-- | nest/a-set.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nest/a-set.c b/nest/a-set.c index 1d2cebf..fe5598e 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; |