eliminate extra newlines in coprocessor statements Reference: /n/sources/patch/applied/machnlinarm Date: Wed Apr 28 05:18:33 CES 2010 Signed-off-by: quanstro@quanstro.net --- /sys/src/libmach/5db.c Wed Apr 28 05:18:13 2010 +++ /sys/src/libmach/5db.c Wed Apr 28 05:18:10 2010 @@ -451,10 +451,10 @@ p = (i->w >> 5) & 0x7; if(i->w&(1<<4)) { op = (i->w >> 21) & 0x07; - snprint(buf, sizeof(buf), "#%x, #%x, R%d, C(%d), C(%d), #%x\n", cp, op, i->rd, i->rn, i->rs, p); + snprint(buf, sizeof(buf), "#%x, #%x, R%d, C(%d), C(%d), #%x", cp, op, i->rd, i->rn, i->rs, p); } else { op = (i->w >> 20) & 0x0f; - snprint(buf, sizeof(buf), "#%x, #%x, C(%d), C(%d), C(%d), #%x\n", cp, op, i->rd, i->rn, i->rs, p); + snprint(buf, sizeof(buf), "#%x, #%x, C(%d), C(%d), C(%d), #%x", cp, op, i->rd, i->rn, i->rs, p); } format(o->o, i, buf); }