Skip to content
Snippets Groups Projects
Commit f7acd41f authored by jce's avatar jce
Browse files

Cleaned up a couple of warnings...

parent 764b4dfb
No related branches found
No related tags found
No related merge requests found
...@@ -745,7 +745,7 @@ int unpack_revoke_credential_msg ( revoke_credential_msg_t** msg , void ** buffe ...@@ -745,7 +745,7 @@ int unpack_revoke_credential_msg ( revoke_credential_msg_t** msg , void ** buffe
return ENOMEM; return ENOMEM;
unpack32( &(tmp_ptr->job_id), buffer, length ) ; unpack32( &(tmp_ptr->job_id), buffer, length ) ;
unpack32( &(tmp_ptr->expiration_time), buffer, length ) ; unpack32( (uint32_t*) &(tmp_ptr->expiration_time), buffer, length ) ;
unpackmem( tmp_ptr->signature, & uint16_tmp , buffer, length ) ; unpackmem( tmp_ptr->signature, & uint16_tmp , buffer, length ) ;
*msg = tmp_ptr; *msg = tmp_ptr;
......
#ifndef _SLURMD_INTERCONNECT_H_ #ifndef _SLURMD_INTERCONNECT_H_
#define _SLURMD_INTERCONNECT_H_ #define _SLURMD_INTERCONNECT_H_
#include <pthread.h>
/* interconnect_init /* interconnect_init
* called by launch_tasks to initialize the interconnect * called by launch_tasks to initialize the interconnect
* IN launch_msg - launch_tasks_msg * IN launch_msg - launch_tasks_msg
......
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