diff options
author | Ondrej Čerman <ondrej.cerman@gmail.com> | 2019-10-29 19:34:15 +0100 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2019-11-16 13:45:22 -0800 |
commit | e4f7b65856c0a304b371e04b9c4d5f2d75b465e6 (patch) | |
tree | 0489d81e7876006ee78bc2652bb81fd3a6f8e7f6 /modules/devices/x86 | |
parent | 0f02ba05e06cd50a7e1a98cb0c28fa2dd35efa82 (diff) |
x86/processor: bigger buffer for cpuinfo
Diffstat (limited to 'modules/devices/x86')
-rw-r--r-- | modules/devices/x86/processor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/devices/x86/processor.c b/modules/devices/x86/processor.c index 538206c1..c6c77cd4 100644 --- a/modules/devices/x86/processor.c +++ b/modules/devices/x86/processor.c @@ -448,7 +448,7 @@ gchar *caches_summary(GSList * processors) return ret; } -#define PROC_SCAN_READ_BUFFER_SIZE 896 +#define PROC_SCAN_READ_BUFFER_SIZE 1024 GSList *processor_scan(void) { GSList *procs = NULL, *l = NULL; |