Skip to content

Commit

Permalink
Fix style issues
Browse files Browse the repository at this point in the history
Convert tab to spaces; fix opening brace position.

Signed-off-by: Fabio Utzig <utzig@apache.org>
  • Loading branch information
utzig authored and nvlsianpu committed Jul 25, 2024
1 parent d09112a commit d5e0e89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions boot/bootutil/src/loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -1281,8 +1281,7 @@ boot_copy_region(struct boot_loader_state *state,
blk_off = (abs_off - hdr->ih_hdr_size) & 0xf;
}

if (blk_sz > 0)
{
if (blk_sz > 0) {
tlv_off = BOOT_TLV_OFF(hdr);
if (abs_off + chunk_sz > tlv_off) {
/* do not decrypt TLVs */
Expand Down
2 changes: 1 addition & 1 deletion boot/bootutil/src/swap_move.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ boot_read_image_header(struct boot_loader_state *state, int slot,

off = 0;
if (bs && !boot_status_is_reset(bs)) {
boot_find_status(BOOT_CURR_IMG(state), &fap);
boot_find_status(BOOT_CURR_IMG(state), &fap);
if (fap == NULL || boot_read_swap_size(fap, &swap_size)) {
rc = BOOT_EFLASH;
goto done;
Expand Down

0 comments on commit d5e0e89

Please sign in to comment.