summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@gmx.de>2013-06-22 01:18:27 +0200
committercinap_lenrek <cinap_lenrek@gmx.de>2013-06-22 01:18:27 +0200
commit769fcc82efccf0efe1395e6d4a67bb68cda48eed (patch)
treed8fdb963c756f97aa62f86d756d6a72f1ae12445
parent3487653524efc9c79e7173407446f6b83f8de81b (diff)
downloadplan9front-769fcc82efccf0efe1395e6d4a67bb68cda48eed.tar.xz
devcons: change /dev/kmesg buffer back to normal 16K
this makes it consistent with the manual again.
-rw-r--r--sys/src/9/port/devcons.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/src/9/port/devcons.c b/sys/src/9/port/devcons.c
index 53025dd5b..aacc64d3f 100644
--- a/sys/src/9/port/devcons.c
+++ b/sys/src/9/port/devcons.c
@@ -73,8 +73,7 @@ prflush(void)
*/
struct {
Lock lk;
-// char buf[16384]; /* normal */
- char buf[256*1024]; /* for acpi debugging */
+ char buf[16384];
uint n;
} kmesg;