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

Merge pull request #15479 from kaspar030/fix_tests_evtimer_mbox_main_return

tests/evtimer_mbox: add missing main() return
This commit is contained in:
Kaspar Schleiser 2020-11-20 11:40:57 +01:00 committed by GitHub
commit 24efd54248
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -84,4 +84,6 @@ int main(void)
if (!failed) {
puts("Test successful\n");
}
return 0;
}