summaryrefslogtreecommitdiff
path: root/udevd.c
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@vrfy.org>2007-03-15 00:10:59 +0100
committerKay Sievers <kay.sievers@vrfy.org>2007-03-15 00:10:59 +0100
commit8d48959a23415d3e960cebd8381b95388dcf127e (patch)
treed70e0197fec237973e249bb0d14ec95a18e1201b /udevd.c
parent4a7e6bcef059af60baab92a3c0fbe01ed44465d5 (diff)
increase /proc/stat buffer
Diffstat (limited to 'udevd.c')
-rw-r--r--udevd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/udevd.c b/udevd.c
index 07f1c48103..efb24ff651 100644
--- a/udevd.c
+++ b/udevd.c
@@ -348,7 +348,7 @@ static int mem_size_mb(void)
static int cpu_count(void)
{
int f;
- char buf[32768];
+ char buf[65536];
int len;
const char *pos;
int count = 0;