contrib/ports/win32/sys_arch.c: Minor change (typo in a debug trace).

This commit is contained in:
fbernon 2008-03-12 10:57:24 +00:00
parent b2c2a407cf
commit f1081a0d64

View File

@ -211,7 +211,7 @@ struct sys_timeouts *sys_arch_timeouts(void)
new_thread = (struct threadlist*)malloc(sizeof(struct threadlist));
LWIP_ASSERT("new_thread != NULL", new_thread != NULL);
if(new_thread != NULL) {
OutputDebugString("First call to sys_arch_timoeuts for thread");
OutputDebugString("First call to sys_arch_timeouts for thread");
new_thread->next = lwip_win32_threads;
lwip_win32_threads = new_thread;
new_thread->id = threadID;