logging: fix if else if constructs missing final else
The logging subsytsem had if else if constructs without final else statement. This commit adds else {} to comply with coding guideline 15.7. Signed-off-by: Jennifer Williams <jennifer.m.williams@intel.com>
This commit is contained in:
parent
4d33007486
commit
5bda586c64
4 changed files with 9 additions and 1 deletions
|
@ -222,6 +222,7 @@ static int data_out_block_mode(uint8_t *data, size_t length, void *ctx)
|
|||
} else if (host_present) {
|
||||
retry_cnt--;
|
||||
on_failed_write(retry_cnt);
|
||||
} else {
|
||||
}
|
||||
} while ((ret == 0) && host_present);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue