Skip to content

Commit

Permalink
Resolve clang-format errors (pt. 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob-Scheiffler authored and Jake-Carter committed Feb 10, 2024
1 parent 5c01b18 commit 0250b94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Examples/MAX32670/Flash_CLI/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ int main(void)
int handle_write(int argc, char *argv[])
{
int err, i = 0;
uint32_t data[MXC_FLASH_PAGE_SIZE/4];
uint32_t data[MXC_FLASH_PAGE_SIZE / 4];

// Check for an invalid command
if (argc != 3 || argv == NULL) {
Expand Down Expand Up @@ -131,7 +131,7 @@ int handle_write(int argc, char *argv[])
int handle_read(int argc, char *argv[])
{
uint32_t addr;
uint8_t data[MXC_FLASH_PAGE_SIZE/4];
uint8_t data[MXC_FLASH_PAGE_SIZE / 4];

// Check for an invalid command
if (argc != 3 || argv == NULL) {
Expand Down

0 comments on commit 0250b94

Please sign in to comment.