Replacing formatting issues

pull/5738/head
Prashant Ravi 2017-12-12 17:09:42 +08:00 committed by adbridge
parent 0671e11faf
commit 2edd6e567a
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()