From 61417822700ae0ab96381fb4c6fd27d5f25229d0 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 19 Jul 2017 00:12:22 +0200 Subject: [PATCH] bootloader: fix whitespace --- bootloader/usb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bootloader/usb.c b/bootloader/usb.c index 1760e5b..198d21b 100644 --- a/bootloader/usb.c +++ b/bootloader/usb.c @@ -356,9 +356,9 @@ static void hid_rx_callback(usbd_device *dev, uint8_t ep) for (int j = 0; j < 256000; j++) { uint32_t r = random32(); cnt[r & 0xFF]++; - cnt[(r >> 8)& 0xFF]++; - cnt[(r >> 16)& 0xFF]++; - cnt[(r >> 24)& 0xFF]++; + cnt[(r >> 8) & 0xFF]++; + cnt[(r >> 16) & 0xFF]++; + cnt[(r >> 24) & 0xFF]++; } layoutProgress("TESTING RNG ...", 100 + (i * 100)); }