This is an automated email from Gerrit. "Ben Bender <benjben...@gmail.com>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/6633
-- gerrit commit c0f2bf8a668ce3c27c5cdc6c13c8b6285bbcc37f Author: Ben Bender <benjben...@gmail.com> Date: Tue Oct 5 15:33:02 2021 +0300 topic: Fixed styling error Here I fixed a styling error a bracket on a seperate line. Signed-off-by: benjbender <benjben...@gmail.com> Change-Id: I99a9a50306ac6bd713b47bd4851d910de66b8094 diff --git a/src/target/arm_adi_v5.c b/src/target/arm_adi_v5.c index 277b316f1..3fa0104e8 100644 --- a/src/target/arm_adi_v5.c +++ b/src/target/arm_adi_v5.c @@ -421,8 +421,7 @@ static int mem_ap_write(struct adiv5_ap *ap, const uint8_t *buffer, uint32_t siz break; } } else if (dap->nu_npcx_quirks) { - switch (this_size) - { + switch (this_size) { case 4: outvalue |= (uint32_t)*buffer++ << 8 * (drw_byte_idx++ & 3); outvalue |= (uint32_t)*buffer++ << 8 * (drw_byte_idx++ & 3); --