Skip to content

Commit

Permalink
Clang formatting mistake fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alba-ado committed Nov 2, 2023
1 parent 4f1a906 commit 46a263c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Adafruit_FRAM_SPI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ bool Adafruit_FRAM_SPI::getDeviceID(uint8_t *manufacturerID,
uint8_t cmd = OPCODE_RDID;
uint8_t a[4] = {0, 0, 0, 0};

if( !spi_dev->write_then_read(&cmd, 1, a, 4) ) {
if(!spi_dev->write_then_read(&cmd, 1, a, 4)) {
return false;
}

Expand Down

0 comments on commit 46a263c

Please sign in to comment.