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

Remove "const" qualifiers to eliminate build warning.

parent 302a17fd
No related branches found
No related tags found
No related merge requests found
...@@ -48,7 +48,7 @@ static int _signal_job_step(const job_step_info_t *step, ...@@ -48,7 +48,7 @@ static int _signal_job_step(const job_step_info_t *step,
uint16_t signal); uint16_t signal);
static int _signal_batch_script_step( static int _signal_batch_script_step(
const resource_allocation_response_msg_t *allocation, uint16_t signal); const resource_allocation_response_msg_t *allocation, uint16_t signal);
static int _p_send_recv_rc_msg(int num_nodes, const slurm_msg_t msg[], static int _p_send_recv_rc_msg(int num_nodes, slurm_msg_t msg[],
int rc[], int timeout); int rc[], int timeout);
static void *_thr_send_recv_rc_msg(void *args); static void *_thr_send_recv_rc_msg(void *args);
struct send_recv_rc { struct send_recv_rc {
...@@ -284,7 +284,7 @@ static int _signal_batch_script_step( ...@@ -284,7 +284,7 @@ static int _signal_batch_script_step(
* can be running at the same time. * can be running at the same time.
*/ */
static int static int
_p_send_recv_rc_msg(int messages, const slurm_msg_t msg[], _p_send_recv_rc_msg(int messages, slurm_msg_t msg[],
int rc[], int timeout) int rc[], int timeout)
{ {
pthread_mutex_t active_mutex; pthread_mutex_t active_mutex;
......
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