Fix a few incorrect uses of err_t. Found by converting lwip error codes to an enum, but I'm not sure wether I want to commit the actual enum conversion.

This commit is contained in:
Dirk Ziegelmeier
2016-08-08 22:15:01 +02:00
parent e5284ec616
commit 85ab39985a
4 changed files with 11 additions and 10 deletions

View File

@@ -881,7 +881,7 @@ pppoe_timeout(void *arg)
static err_t
pppoe_connect(ppp_pcb *ppp, void *ctx)
{
int err;
err_t err;
struct pppoe_softc *sc = (struct pppoe_softc *)ctx;
lcp_options *lcp_wo;
lcp_options *lcp_ao;