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

Change NULL to "" to eliminate a warning.

parent e334ccdb
No related branches found
No related tags found
No related merge requests found
......@@ -798,7 +798,7 @@ extern int select_g_pack_jobinfo (select_jobinfo_t jobinfo, Buf buffer)
pack16((uint16_t) 0, buffer);
pack32((uint32_t) 0, buffer);
pack32((uint32_t) 0, buffer);
packstr(NULL, buffer);
packstr("", buffer);
}
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