Skip to content

Commit

Permalink
Fixed minor logic nit.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Oct 7, 2008
1 parent d45d1cd commit 3c436c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nph-offload.c
Expand Up @@ -1650,7 +1650,7 @@ static int serverMainline(int argc, char **argv, char **envp)
} // if
#endif

else if ((br >= startRange) && (br < endRange))
if ((br >= startRange) && (br < endRange))
{
#if ((GDEBUG) && (!GDEBUGTOFILE))
debugEcho("Would have written %d bytes", len);
Expand Down

0 comments on commit 3c436c6

Please sign in to comment.