From 7d2ea7b398d372ac836e55e8f9d4d4053aa0b0be Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Mon, 31 May 2004 12:35:13 +0000 Subject: [PATCH] =?UTF-8?q?Beim=20schreiben=20von=20Attributen=20etwas=20O?= =?UTF-8?q?rdnung=20gemacht.=20Einige=20Attribute=20haben=20=5Fnicht=5F=20?= =?UTF-8?q?ihre=20schreibroutine=20mit=20einem=20space=20terminiert,=20was?= =?UTF-8?q?=20sie=20m=C3=BCssen,=20damit=20es=20nicht=20sowas=20gibt:=20ro?= =?UTF-8?q?ad=202=200=200=201=200=2050=200end?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/kernel/border.c | 2 +- src/common/util/attrib.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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; }