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

Address logically dead code

This is so old/bad. CID 33179.
parent 9c5205aa
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -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.
Please register or to comment