cellular: registration status change astyle fix

pull/8795/head
Teemu Kultala 2018-11-19 13:14:44 +02:00
parent a1b1d7c4bd
commit af534f592e
1 changed files with 6 additions and 6 deletions

View File

@ -66,7 +66,7 @@ ATHandler::ATHandler(FileHandle *fh, EventQueue &queue, int timeout, const char
ATHandler_stub::process_oob_urc = false;
ATHandler_stub::urc_amount = 0;
int i=0;
int i = 0;
while (i < kATHandler_urc_table_max_size) {
ATHandler_stub::callback[i] = NULL;
ATHandler_stub::urc_string_table[i++] = NULL;
@ -82,7 +82,7 @@ ATHandler::~ATHandler()
{
ATHandler_stub::ref_count = kATHandler_destructor_ref_ount;
int i=0;
int i = 0;
while (i < kATHandler_urc_table_max_size) {
if (ATHandler_stub::urc_string_table[i]) {
delete [] ATHandler_stub::urc_string_table[i];