Skip to content

Commit e9c489d

Browse files
committed
modify indentation
1 parent 877a679 commit e9c489d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/net/lwip_dhcpd/dhcp_server.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -378,12 +378,12 @@ void dhcpd_start(char* netif_name)
378378
rt_thread_t thread;
379379
struct netif *netif = netif_list;
380380

381-
if(strlen(netif_name) > sizeof(netif->name))
381+
if(strlen(netif_name) > sizeof(netif->name))
382382
{
383383
rt_kprintf("network interface name too long!\r\n");
384384
return;
385385
}
386-
while(netif != RT_NULL)
386+
while(netif != RT_NULL)
387387
{
388388
if(strncmp(netif_name, netif->name, sizeof(netif->name)) == 0)
389389
break;

0 commit comments

Comments
 (0)