Update uwufetch.c
This commit is contained in:
parent
b767645854
commit
9eb6df1eb4
1 changed files with 2 additions and 2 deletions
|
@ -462,10 +462,10 @@ void get_info()
|
||||||
// free command prints like this: "Mem:" total used free shared buff/cache available
|
// free command prints like this: "Mem:" total used free shared buff/cache available
|
||||||
if (sscanf(line, "Mem: %d %d", &ram_total, &ram_used))
|
if (sscanf(line, "Mem: %d %d", &ram_total, &ram_used))
|
||||||
{
|
{
|
||||||
// convert to megabytes
|
// convert to mebibytes
|
||||||
if (ram_total > 0 && ram_used > 0)
|
if (ram_total > 0 && ram_used > 0)
|
||||||
{
|
{
|
||||||
// data is in bytes
|
// data is in kibibytes
|
||||||
ram_total /= 1024;
|
ram_total /= 1024;
|
||||||
ram_used /= 1024;
|
ram_used /= 1024;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue