Skip to content
Snippets Groups Projects
Commit 55b887e9 authored by Yu Watanabe's avatar Yu Watanabe Committed by David Bigagli
Browse files

Fix format output for scontrol command.

parent 0e119bf5
No related branches found
No related tags found
No related merge requests found
...@@ -204,7 +204,7 @@ scontrol_update_node (int argc, char *argv[]) ...@@ -204,7 +204,7 @@ scontrol_update_node (int argc, char *argv[])
"NoResp DRAIN FAIL RESUME " "NoResp DRAIN FAIL RESUME "
"POWER_DOWN POWER_UP UNDRAIN"); "POWER_DOWN POWER_UP UNDRAIN");
for (k = 0; k < NODE_STATE_END; k++) { for (k = 0; k < NODE_STATE_END; k++) {
fprintf (stderr, "%s ", fprintf (stderr, " %s",
node_state_string(k)); node_state_string(k));
} }
fprintf (stderr, "\n"); fprintf (stderr, "\n");
......
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