Skip to content
Snippets Groups Projects
Commit edb4b0e1 authored by Moe Jette's avatar Moe Jette
Browse files

Don't try to use variable that isn't defined for non-bgl systems.

parent 499957bc
No related branches found
No related tags found
No related merge requests found
......@@ -2239,7 +2239,9 @@ _unpack_job_desc_msg(job_desc_msg_t ** job_desc_buffer_ptr, Buf buffer)
if (select_g_alloc_jobinfo (&job_desc_ptr->select_jobinfo)
|| select_g_unpack_jobinfo(job_desc_ptr->select_jobinfo, buffer))
goto unpack_error;
#if SYSTEM_DIMENSIONS
job_desc_ptr->geometry[0] = (uint16_t)NO_VAL;
#endif
job_desc_ptr->conn_type = (uint16_t)NO_VAL;
job_desc_ptr->rotate = (uint16_t)NO_VAL;
return SLURM_SUCCESS;
......
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