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

test_thread_msg_seq: add missing main() return statement

This commit is contained in:
Kaspar Schleiser 2014-02-28 17:10:53 +01:00
parent 6bc9ad69c3
commit 493f17a4bf

View File

@ -62,4 +62,6 @@ int main(void)
msg_receive(&msg);
printf("Got msg from pid %i: \"%s\"\n", msg.sender_pid, msg.content.ptr);
}
return 0;
}