diff --git a/src/common/kernel/border.c b/src/common/kernel/border.c index e84068097..b3723010e 100644 --- a/src/common/kernel/border.c +++ b/src/common/kernel/border.c @@ -433,7 +433,7 @@ b_writeroad(const border * b, FILE *f) x = (int)b->data; y = x & 0xFFFF; x = (x >> 16) & 0xFFFF; - fprintf(f, "%d %d", x, y); + fprintf(f, "%d %d ", x, y); } static boolean diff --git a/src/common/util/attrib.c b/src/common/util/attrib.c index a9cc822d9..fde65308b 100644 --- a/src/common/util/attrib.c +++ b/src/common/util/attrib.c @@ -301,7 +301,6 @@ a_write(FILE * f, const attrib * attribs) assert(na->type->hashkey || !"attribute not registered"); fprintf(f, "%s ", na->type->name); na->type->write(na, f); - putc(' ', f); } na = na->next; }