Skip to content
Snippets Groups Projects
Commit c148f55d authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Address logically dead code

This is so old/bad. CID 33179.
parent 52a3844b
No related branches found
No related tags found
No related merge requests found
......@@ -174,8 +174,8 @@ void getnodedat(int number, node_t *node, int lockit)
if(count>=(LOOP_NODEDAB/2))
printf("NODE.DAB (node %d) COLLISION (READ) - Count: %d\n"
,number+1, count);
else if(count==LOOP_NODEDAB) {
printf("!Error reading nodefile for node %d\n",number+1);
if(count>=LOOP_NODEDAB) {
printf("!Error %d reading nodefile for node %d\n", errno, number+1);
}
}
......
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