From 220dec20f9df8117a09b29571d3dab0d02997790 Mon Sep 17 00:00:00 2001 From: Denis Kozadaev Date: Thu, 29 Feb 2024 09:40:49 +0300 Subject: [PATCH] kcontrol-info-memory: use 64 bits variable to store memory size Signed-off-by: Denis Kozadaev --- kcontrol/info/memory_fbsd.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/kcontrol/info/memory_fbsd.cpp b/kcontrol/info/memory_fbsd.cpp index 80a28749e..f307563f3 100644 --- a/kcontrol/info/memory_fbsd.cpp +++ b/kcontrol/info/memory_fbsd.cpp @@ -11,9 +11,9 @@ void KMemoryWidget::update() { - char blah[10], buf[80], *used_str, *total_str; + char buf[80], *used_str, *total_str; /* Stuff for sysctl */ - int memory; + unsigned long memory; size_t len; /* Stuff for swap display */ int used, total, _free; @@ -22,7 +22,6 @@ void KMemoryWidget::update() len=sizeof(memory); sysctlbyname("hw.physmem", &memory, &len, NULL, 0); - snprintf(blah, 10, "%d", memory); // Numerical values // total physical memory (without swap space)