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 committed Oct 13, 2023
1 parent c2e76ce commit 4151cb1
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 @@ -85,7 +85,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 @@ -143,7 +143,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 4151cb1

Please sign in to comment.