LinuxProcessList: drop unnecessary parenthesis

This commit is contained in:
Christian Göttsche 2021-03-17 17:53:00 +01:00
parent d9f2eacbc5
commit e942736267
1 changed files with 1 additions and 1 deletions

View File

@ -673,7 +673,7 @@ static bool LinuxProcessList_readSmapsFile(LinuxProcess* process, openat_arg_t p
#ifdef HAVE_OPENVZ
static void LinuxProcessList_readOpenVZData(LinuxProcess* process, openat_arg_t procFd) {
if ( (access(PROCDIR "/vz", R_OK) != 0)) {
if (access(PROCDIR "/vz", R_OK) != 0) {
free(process->ctid);
process->ctid = NULL;
process->vpid = process->super.pid;