about-distro: calculateTotalRam() correction

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2021-02-24 14:26:12 +02:00
parent e27686a808
commit 1b56d60f45

View file

@ -46,7 +46,6 @@ static qlonglong calculateTotalRam()
#if defined(_SC_PHYS_PAGES) && defined(_SC_PAGESIZE)
ret = sysconf(_SC_PHYS_PAGES);
ret *= sysconf(_SC_PAGESIZE);
ret /= 1.03;
#else
# warning calculateTotalRam() not implemented
#endif