mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-12 12:14:36 +03:00
Merge pull request #555 from ivan/master
Fix column misalignment for priority -101 threads
This commit is contained in:
@ -429,7 +429,7 @@ void Process_writeField(Process* this, RichString* str, ProcessField field) {
|
|||||||
case PID: snprintf(buffer, n, Process_pidFormat, this->pid); break;
|
case PID: snprintf(buffer, n, Process_pidFormat, this->pid); break;
|
||||||
case PPID: snprintf(buffer, n, Process_pidFormat, this->ppid); break;
|
case PPID: snprintf(buffer, n, Process_pidFormat, this->ppid); break;
|
||||||
case PRIORITY: {
|
case PRIORITY: {
|
||||||
if(this->priority == -100)
|
if(this->priority <= -100)
|
||||||
snprintf(buffer, n, " RT ");
|
snprintf(buffer, n, " RT ");
|
||||||
else
|
else
|
||||||
snprintf(buffer, n, "%3ld ", this->priority);
|
snprintf(buffer, n, "%3ld ", this->priority);
|
||||||
|
Reference in New Issue
Block a user