kcontrol-info-memory: use 64 bits variable to store memory size

Signed-off-by: Denis Kozadaev <denis@dilos.org>
pull/456/head
Denis Kozadaev 2 months ago
parent dc9ec2711b
commit 220dec20f9

@ -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)

Loading…
Cancel
Save