[patch] Removes \r from two printk's.

Robert Thoerncrantz (rtz@pirx.df.lth.se)
Tue, 29 Dec 1998 15:41:14 +0100


Since it's cleaning up time, here is a patch to remove the annoying
CR's from some messages I see all too often in my syslog right now.
Perhaps I should have asked Santa for some bigger disks this christmas.
Urgency: "Wash your dog first."

A happy new year to you all!

/Robert

diff -urN linux-2.2.0-pre1.orig/kernel/acct.c linux-2.2.0-pre1/kernel/acct.c
--- linux-2.2.0-pre1.orig/kernel/acct.c Fri Nov 27 14:24:59 1998
+++ linux-2.2.0-pre1/kernel/acct.c Tue Dec 29 15:19:07 1998
@@ -124,12 +124,12 @@
if (acct_active) {
if (act < 0) {
acct_active = 0;
- printk(KERN_INFO "Process accounting paused\r\n");
+ printk(KERN_INFO "Process accounting paused\n");
}
} else {
if (act > 0) {
acct_active = 1;
- printk(KERN_INFO "Process accounting resumed\r\n");
+ printk(KERN_INFO "Process accounting resumed\n");
}
}

-- 
Robert Thörncrantz                                 rtz@pirx.df.lth.se
Mundus Vult Decipi                              dat95rth@ludat.lth.se
Pgp Key: 0xB30D8661;                5B4617EACD4C0AF1 EF8E3D3FF91523B2

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.rutgers.edu Please read the FAQ at http://www.tux.org/lkml/