Skip to content

Commit

Permalink
Merge pull request #25 from blakejakopovic/patch-1
Browse files Browse the repository at this point in the history
Added missing bracket in Ref3_eventloop.txt
  • Loading branch information
nmathewson committed Dec 15, 2014
2 parents 1a385df + 1cb9178 commit 90a3f81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Ref3_eventloop.txt
Expand Up @@ -62,7 +62,7 @@ while (any events are registered with the loop,
else
Wait until at least one event has triggered, and mark it active.

for (p = 0; p < n_priorities; ++p {
for (p = 0; p < n_priorities; ++p) {
if (any event with priority of p is active) {
Run all active events with priority of p.
break; /* Do not run any events of a less important priority */
Expand Down

0 comments on commit 90a3f81

Please sign in to comment.