1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

core/thread_flags: Fix code indention

Apply coding convention on the indent in the single switch statement within
core.
This commit is contained in:
Marian Buschsieweke 2020-08-23 21:18:10 +02:00
parent bb064e0580
commit 8745d820ba
No known key found for this signature in database
GPG Key ID: 61F64C6599B1539F

View File

@ -32,15 +32,15 @@ static inline int __attribute__((always_inline)) _thread_flags_wake(thread_t *th
thread_flags_t mask = (uint16_t)(unsigned)thread->wait_data;
switch (thread->status) {
case STATUS_FLAG_BLOCKED_ANY:
wakeup = (thread->flags & mask);
break;
case STATUS_FLAG_BLOCKED_ALL:
wakeup = ((thread->flags & mask) == mask);
break;
default:
wakeup = 0;
break;
case STATUS_FLAG_BLOCKED_ANY:
wakeup = (thread->flags & mask);
break;
case STATUS_FLAG_BLOCKED_ALL:
wakeup = ((thread->flags & mask) == mask);
break;
default:
wakeup = 0;
break;
}
if (wakeup) {