From 36dc3c2aabc9985f040eb7702bda87fdd068c524 Mon Sep 17 00:00:00 2001 From: Evan Lojewski Date: Sun, 23 Feb 2020 23:00:56 -0700 Subject: nvram: Re-run clang-format (#37) --- libs/NVRam/bitbang.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs') diff --git a/libs/NVRam/bitbang.c b/libs/NVRam/bitbang.c index af99155..3fc96b7 100644 --- a/libs/NVRam/bitbang.c +++ b/libs/NVRam/bitbang.c @@ -198,7 +198,7 @@ uint32_t NVRam_bitbang_readWord(uint32_t address) }; uint8_t get_bytes[sizeof(send_bytes)]; uint32_t num_bytes = sizeof(send_bytes); - if(NVRam_sendAndGetBytes(send_bytes, get_bytes, num_bytes)) + if (NVRam_sendAndGetBytes(send_bytes, get_bytes, num_bytes)) { uint32_t read_word = (get_bytes[4]) | (get_bytes[5] << 8) | (get_bytes[6] << 16) | (get_bytes[7] << 24); -- cgit v1.2.1