diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-12-02 06:14:45 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-12-02 06:14:45 +0000 |
commit | d4a83ebccef017c840dea11ac0082b794ba678a8 (patch) | |
tree | 8e55907555da55623575ef4a0e9044baf7c05689 /os | |
parent | e7234a42e49ca77c6e2b0b391c4da6ce07191cce (diff) | |
download | ChibiOS-d4a83ebccef017c840dea11ac0082b794ba678a8.tar.gz ChibiOS-d4a83ebccef017c840dea11ac0082b794ba678a8.tar.bz2 ChibiOS-d4a83ebccef017c840dea11ac0082b794ba678a8.zip |
Fixed bug #989.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12453 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os')
-rw-r--r-- | os/rt/src/chevents.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/rt/src/chevents.c b/os/rt/src/chevents.c index e5182b156..d86847c0e 100644 --- a/os/rt/src/chevents.c +++ b/os/rt/src/chevents.c @@ -236,7 +236,7 @@ void chEvtBroadcastFlagsI(event_source_t *esp, eventflags_t flags) { /* When flags == 0 the thread will always be signaled because the
source does not emit any flag.*/
if ((flags == (eventflags_t)0) ||
- ((elp->flags & elp->wflags) != (eventflags_t)0)) {
+ ((flags & elp->wflags) != (eventflags_t)0)) {
chEvtSignalI(elp->listener, elp->events);
}
elp = elp->next;
|