Skip to content

Commit

Permalink
FIX: warning: for loop has empty body
Browse files Browse the repository at this point in the history
  • Loading branch information
Oldes committed Dec 15, 2022
1 parent 235adec commit a1f8e85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/c-port.c
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ SCHEME_ACTIONS *Scheme_Actions; // Initial Global (not threaded)
{
REBINT n;

for (n = 0; n < MAX_SCHEMES && Scheme_Actions[n].sym; n++);
for (n = 0; n < MAX_SCHEMES && Scheme_Actions[n].sym; n++){};
ASSERT2(n < MAX_SCHEMES, RP_MAX_SCHEMES);

Scheme_Actions[n].sym = sym;
Expand Down

0 comments on commit a1f8e85

Please sign in to comment.