From 73b8026cb97e6fb3e8a49eb1bdae6849377cb2ec Mon Sep 17 00:00:00 2001 From: Sylvain Rochet Date: Sat, 7 May 2016 01:51:52 +0200 Subject: [PATCH] PPP, code cleaning lwIP indentation is 2 characters, fix ppp_init indentation. --- src/netif/ppp/ppp.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/netif/ppp/ppp.c b/src/netif/ppp/ppp.c index 0a3b0431..480bbccb 100644 --- a/src/netif/ppp/ppp.c +++ b/src/netif/ppp/ppp.c @@ -580,19 +580,19 @@ err: int ppp_init(void) { #if PPPOS_SUPPORT - LWIP_MEMPOOL_INIT(PPPOS_PCB); + LWIP_MEMPOOL_INIT(PPPOS_PCB); #endif #if PPPOE_SUPPORT - LWIP_MEMPOOL_INIT(PPPOE_IF); + LWIP_MEMPOOL_INIT(PPPOE_IF); #endif #if PPPOL2TP_SUPPORT - LWIP_MEMPOOL_INIT(PPPOL2TP_PCB); + LWIP_MEMPOOL_INIT(PPPOL2TP_PCB); #endif #if LWIP_PPP_API && LWIP_MPU_COMPATIBLE - LWIP_MEMPOOL_INIT(PPPAPI_MSG); + LWIP_MEMPOOL_INIT(PPPAPI_MSG); #endif - LWIP_MEMPOOL_INIT(PPP_PCB); + LWIP_MEMPOOL_INIT(PPP_PCB); /* * Initialize magic number generator now so that protocols may @@ -600,7 +600,7 @@ int ppp_init(void) */ magic_init(); - return 0; + return 0; } /*