Skip to content

Commit

Permalink
Merge pull request #2786 from dp111/breakinside
Browse files Browse the repository at this point in the history
Put break inside #if
  • Loading branch information
HiFiPhile authored Sep 2, 2024
2 parents ee55190 + c34d5e7 commit 4349e99
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/common/tusb_fifo.c
Original file line number Diff line number Diff line change
Expand Up @@ -315,9 +315,8 @@ static void _ff_pull_n(tu_fifo_t* f, void* app_buf, uint16_t n, uint16_t rd_ptr,
// Read data wrapped part
if (wrap_bytes > 0) _ff_pull_const_addr(app_buf, ff_buf, wrap_bytes);
}
#endif
break;

#endif
default: break;
}
}
Expand Down

0 comments on commit 4349e99

Please sign in to comment.