mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-22 23:48:12 +00:00
bootloader: fix whitespace
This commit is contained in:
parent
bf374f1769
commit
6141782270
@ -356,9 +356,9 @@ static void hid_rx_callback(usbd_device *dev, uint8_t ep)
|
|||||||
for (int j = 0; j < 256000; j++) {
|
for (int j = 0; j < 256000; j++) {
|
||||||
uint32_t r = random32();
|
uint32_t r = random32();
|
||||||
cnt[r & 0xFF]++;
|
cnt[r & 0xFF]++;
|
||||||
cnt[(r >> 8)& 0xFF]++;
|
cnt[(r >> 8) & 0xFF]++;
|
||||||
cnt[(r >> 16)& 0xFF]++;
|
cnt[(r >> 16) & 0xFF]++;
|
||||||
cnt[(r >> 24)& 0xFF]++;
|
cnt[(r >> 24) & 0xFF]++;
|
||||||
}
|
}
|
||||||
layoutProgress("TESTING RNG ...", 100 + (i * 100));
|
layoutProgress("TESTING RNG ...", 100 + (i * 100));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user