1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 14:33:52 +01:00

tests/irq_disable_restore: fix typo in comment

This commit is contained in:
Hauke Petersen 2021-08-19 08:58:19 +02:00
parent 7baf5b4a46
commit dc1dcb9b5d

View File

@ -64,7 +64,7 @@ int main(void)
/* Timer should have fired in the middle of busy_delay(), thus value of
* a now and during ISR should both be 1, but value of b during ISR should
* still be 0 but not it should be 1 */
* still be 0 but now it should be 1 */
if ((atomic_load(&a) == atomic_load(&a_during_isr)) &&
(atomic_load(&b) != atomic_load(&b_during_isr)))
{