Update uwufetch.c

This commit is contained in:
Darkpelz 2021-06-24 03:58:51 +08:00 committed by GitHub
parent b767645854
commit 9eb6df1eb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -462,10 +462,10 @@ void get_info()
// free command prints like this: "Mem:" total used free shared buff/cache available
if (sscanf(line, "Mem: %d %d", &ram_total, &ram_used))
{
// convert to megabytes
// convert to mebibytes
if (ram_total > 0 && ram_used > 0)
{
// data is in bytes
// data is in kibibytes
ram_total /= 1024;
ram_used /= 1024;
break;