Fixed compilation after change of sys layer

This commit is contained in:
goldsimon 2010-02-14 12:44:04 +00:00
parent e1f2af00d7
commit 239240e336
2 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@ tcpip_init_done(void *arg)
sys_timeout(5000, tcp_timeout, NULL);
sys_sem_signal(*sem);
sys_sem_signal(sem);
}
/*-----------------------------------------------------------------------------------*/

View File

@ -115,7 +115,7 @@ tcpip_init_done(void *arg)
sys_timeout(5000, tcp_timeout, NULL);
sys_sem_signal(*sem);
sys_sem_signal(sem);
}