Skip to content

Commit

Permalink
Added missing bracket in Ref3_eventloop.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
blakejakopovic committed Dec 11, 2014
1 parent 1a385df commit 1cb9178
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Ref3_eventloop.txt
Original file line number Diff line number Diff line change
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 1cb9178

Please sign in to comment.