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); msg_receive(&msg);
printf("Got msg from pid %i: \"%s\"\n", msg.sender_pid, msg.content.ptr); printf("Got msg from pid %i: \"%s\"\n", msg.sender_pid, msg.content.ptr);
} }
return 0;
} }