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

Correct typo "Indicies" instead of "Indecies".

parent 3f8428f7
No related branches found
No related tags found
No related merge requests found
......@@ -144,7 +144,7 @@ slurm_print_job_info ( FILE* out, job_info_t * job_ptr, int one_liner )
/****** Line 6 ******/
fprintf ( out, "NodeList=%s ", job_ptr->nodes);
fprintf ( out, "NodeListIndecies=");
fprintf ( out, "NodeListIndicies=");
for (j = 0; job_ptr->node_inx; j++) {
if (j > 0)
fprintf( out, ",%d", job_ptr->node_inx[j]);
......@@ -190,7 +190,7 @@ slurm_print_job_info ( FILE* out, job_info_t * job_ptr, int one_liner )
/****** Line 10 ******/
fprintf ( out, "ReqNodeList=%s ", job_ptr->req_nodes);
fprintf ( out, "ReqNodeListIndecies=");
fprintf ( out, "ReqNodeListIndicies=");
for (j = 0; job_ptr->req_node_inx; j++) {
if (j > 0)
fprintf( out, ",%d", job_ptr->req_node_inx[j]);
......@@ -206,7 +206,7 @@ slurm_print_job_info ( FILE* out, job_info_t * job_ptr, int one_liner )
/****** Line 11 ******/
fprintf ( out, "ExcNodeList=%s ", job_ptr->exc_nodes);
fprintf ( out, "ExcNodeListIndecies=");
fprintf ( out, "ExcNodeListIndicies=");
for (j = 0; job_ptr->exc_node_inx; j++) {
if (j > 0)
fprintf( out, ",%d", job_ptr->exc_node_inx[j]);
......
......@@ -132,7 +132,7 @@ void slurm_print_partition_info ( FILE* out, partition_info_t * part_ptr,
fprintf ( out, "\n ");
/****** Line 4 ******/
fprintf ( out, "Nodes=%s NodeIndecies=", part_ptr->nodes);
fprintf ( out, "Nodes=%s NodeIndicies=", part_ptr->nodes);
for (j = 0; part_ptr->node_inx; j++) {
if (j > 0)
fprintf( out, ",%d", part_ptr->node_inx[j]);
......
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