diff options
author | Keith Packard <keithp@keithp.com> | 2013-06-16 22:31:58 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-06-16 22:31:58 -0700 |
commit | dcf769198863c1b0f1b05f41d0c052a3dbfef247 (patch) | |
tree | ad58ce2f545f8b0ba6ce125222bdfa21155dd254 | |
parent | d040adeef9df4cda31dce603db81dc7ce19ec0d1 (diff) |
altos/lpc: Remove spurious semicolon
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | src/lpc/ao_spi_lpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lpc/ao_spi_lpc.c b/src/lpc/ao_spi_lpc.c index c3587698..a889137c 100644 --- a/src/lpc/ao_spi_lpc.c +++ b/src/lpc/ao_spi_lpc.c @@ -42,7 +42,7 @@ static uint8_t spi_dev_null; /* recv a byte */ \ get lpc_ssp->dr; \ } \ - } while (0); + } while (0) void ao_spi_send(void *block, uint16_t len, uint8_t id) |