mirror of https://github.com/xzeldon/htop.git
Drop unnecessary cast
This commit is contained in:
parent
45a22080c9
commit
7429c22201
|
@ -224,7 +224,7 @@ double Platform_setCPUValues(Meter* this, int cpu) {
|
|||
}
|
||||
|
||||
void Platform_setMemoryValues(Meter* this) {
|
||||
ProcessList* pl = (ProcessList*) this->pl;
|
||||
ProcessList* pl = this->pl;
|
||||
LinuxProcessList* lpl = (LinuxProcessList*) this->pl;
|
||||
|
||||
long int usedMem = pl->usedMem;
|
||||
|
|
Loading…
Reference in New Issue