Fixed bug #4988 (change return type of mintapif_init)

This commit is contained in:
kieranm 2003-09-20 15:08:38 +00:00
parent 2a968d2b17
commit 46f5dc4176
2 changed files with 2 additions and 2 deletions

View File

@ -296,7 +296,7 @@ mintapif_input(struct netif *netif)
*
*/
/*-----------------------------------------------------------------------------------*/
void
err_t
mintapif_init(struct netif *netif)
{
struct mintapif *mintapif;

View File

@ -39,7 +39,7 @@ enum mintapif_signal {
MINTAPIF_PACKET
};
void mintapif_init(struct netif *netif);
err_t mintapif_init(struct netif *netif);
enum mintapif_signal mintapif_wait(struct netif *netif, u16_t time);
#endif /* __MINTAPIF_H__ */