Replacing formatting issues

pull/5649/head
Prashant Ravi 2017-12-12 17:09:42 +08:00
parent 01808db8ff
commit 01ec0da7f2
1 changed files with 7 additions and 7 deletions

View File

@ -100,13 +100,13 @@ RTWInterface::RTWInterface(bool debug)
}
emac->ops.power_up(emac);
if (_inited == false) {
ret = mbed_lwip_init(emac);
if (ret != 0) {
printf("Error init RTWInterface!(%d)\r\n", ret);
return;
}
_inited = true;
}
ret = mbed_lwip_init(emac);
if (ret != 0) {
printf("Error init RTWInterface!(%d)\r\n", ret);
return;
}
_inited = true;
}
}
RTWInterface::~RTWInterface()