Skip to content
Snippets Groups Projects
Commit 0e8927d7 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Simplify loop body.

parent d4575def
No related branches found
No related tags found
No related merge requests found
......@@ -281,11 +281,7 @@ void fpgPOSIXFPGUARDSENDRECV ( void )
sentFinalize[source] = true;
doFinalize = true;
for ( collID = 0; collID < nProcsCollNode; collID++ )
if ( !sentFinalize[collID] )
{
doFinalize = false;
break;
}
doFinalize &= sentFinalize[collID];
if ( doFinalize )
{
if (!listSetIsEmpty(bibBFiledataPF))
......
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