Fix TcpIpPortingInit() to TcpIpPortingInit(void)

Signed-off-by: Gao Rui <gaoruinan@163.com>
This commit is contained in:
Gao Rui 2022-08-11 21:54:56 +08:00
parent ae692bfbc4
commit 8ef012bdad
1 changed files with 2 additions and 1 deletions

View File

@ -33,7 +33,8 @@
#include <stdlib.h> #include <stdlib.h>
#include "lwip/tcpip.h" #include "lwip/tcpip.h"
#include "ohos_init.h" #include "ohos_init.h"
void TcpIpPortingInit()
void TcpIpPortingInit(void)
{ {
tcpip_init(NULL, NULL); tcpip_init(NULL, NULL);
} }