Drop redundant casts to the same type

This commit is contained in:
Christian Göttsche
2020-09-28 12:17:52 +02:00
committed by cgzones
parent 214c742ae1
commit 843949131a
9 changed files with 12 additions and 12 deletions

View File

@ -290,7 +290,7 @@ void LinuxProcess_writeField(Process* this, RichString* str, ProcessField field)
xSnprintf(buffer, n, "%5lu ", lp->ctxt_diff);
break;
default:
Process_writeField((Process*)this, str, field);
Process_writeField(this, str, field);
return;
}
RichString_append(str, attr, buffer);