Rename command line field from comm to cmdline

This commit is contained in:
Benny Baumann
2020-12-19 16:21:08 +01:00
committed by BenBE
parent fbec3e4005
commit 02431c43e1
11 changed files with 28 additions and 28 deletions

View File

@ -569,7 +569,7 @@ Process* ProcessList_getProcess(ProcessList* this, pid_t pid, bool* preExisting,
assert(proc->pid == pid);
} else {
proc = constructor(this->settings);
assert(proc->comm == NULL);
assert(proc->cmdline == NULL);
proc->pid = pid;
}
return proc;