mirror of https://github.com/xzeldon/htop.git
Drop always false condition
The previous if conditional branch would have been taken in case this condition would be true,
This commit is contained in:
parent
d53398fb48
commit
3715301fe3
|
@ -1455,7 +1455,7 @@ static bool LinuxProcessList_recurseProcTree(LinuxProcessList* this, openat_arg_
|
|||
proc->basenameOffset = -1;
|
||||
setCommand(proc, command, commLen);
|
||||
} else if (Process_isThread(proc)) {
|
||||
if (settings->showThreadNames || Process_isKernelThread(proc) || (proc->state == 'Z' && proc->basenameOffset == 0)) {
|
||||
if (settings->showThreadNames || Process_isKernelThread(proc)) {
|
||||
proc->basenameOffset = -1;
|
||||
setCommand(proc, command, commLen);
|
||||
} else if (settings->showThreadNames) {
|
||||
|
|
Loading…
Reference in New Issue