diff --git a/cputnik/src/cputnik.c b/cputnik/src/cputnik.c index 70d79b7..cd0a6e0 100644 --- a/cputnik/src/cputnik.c +++ b/cputnik/src/cputnik.c @@ -50,7 +50,7 @@ char temp[BUFFER_SIZE]; fscanf(fp_memory, "%lld", &m_cached); } - printf("m_total: %ld, m_free: %ld, m_cached: %ld\n", m_total, m_free, m_cached); + // printf("m_total: %ld, m_free: %ld, m_cached: %ld\n", m_total, m_free, m_cached); *free = (int)(((float)(m_total - m_free - m_cached) / m_total) * 100.0); }