Mark ProcessList_keyAt argument const

This commit is contained in:
Christian Göttsche
2020-11-04 17:46:11 +01:00
committed by BenBE
parent 42073babb9
commit 91317322fe
3 changed files with 3 additions and 3 deletions

View File

@ -231,7 +231,7 @@ void ProcessList_sort(ProcessList* this) {
}
ProcessField ProcessList_keyAt(ProcessList* this, int at) {
ProcessField ProcessList_keyAt(const ProcessList* this, int at) {
int x = 0;
const ProcessField* fields = this->settings->fields;
ProcessField field;