Skip to content
Snippets Groups Projects
Commit 0510fc3e authored by Christopher J. Morrone's avatar Christopher J. Morrone
Browse files

Needed to add an &, not remove...

parent 5bcb910d
No related branches found
No related tags found
No related merge requests found
......@@ -123,7 +123,7 @@ extern int slurm_container_add ( slurmd_job_t *job, pid_t pid )
xassert(job);
xassert(pgid > 1);
if (proctrack_job_reg_pid(pgid, pid) != 0) {
if (proctrack_job_reg_pid(&pgid, &pid) != 0) {
error("proctrack_job_reg_pid(%d, %d): %m", pgid, (int)pid);
return SLURM_ERROR;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment