bootloader: fix whitespace

This commit is contained in:
Pavol Rusnak 2017-07-19 00:12:22 +02:00
parent bf374f1769
commit 6141782270
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
1 changed files with 3 additions and 3 deletions

View File

@ -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));
}