cputnik: remove an annoying debug printf()

This commit is contained in:
snow 2020-08-14 14:36:59 -07:00
parent b0aaf3cc3e
commit 75d4c8f45c
1 changed files with 1 additions and 1 deletions

View File

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