Align descriptive comments

This commit is contained in:
Benny Baumann 2021-07-14 19:25:04 +02:00 committed by BenBE
parent 976c6123f4
commit 279140db21
2 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ void Generic_gettime_realtime(struct timeval* tvp, uint64_t* msec) {
*msec = 0;
}
#else /* lower resolution gettimeofday(2) is always available */
#else /* lower resolution gettimeofday(2) is always available */
struct timeval tv;
if (gettimeofday(&tv, NULL) == 0) {

View File

@ -380,8 +380,8 @@ static int SolarisProcessList_walkproc(psinfo_t* _psinfo, lwpsinfo_t* _lwpsinfo,
free_and_xStrdup(&proc->tty_name, name);
}
proc->m_resident = _psinfo->pr_rssize; // KB
proc->m_virt = _psinfo->pr_size; // KB
proc->m_resident = _psinfo->pr_rssize; // KB
proc->m_virt = _psinfo->pr_size; // KB
if (proc->st_uid != _psinfo->pr_euid) {
proc->st_uid = _psinfo->pr_euid;