fix indentation

i was editting this in another editor

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2026-03-12 15:34:10 +00:00
parent f04b796dcc
commit 48f124a2e8
+11 -11
View File
@@ -1052,20 +1052,20 @@ fallback_rand(void)
static unsigned long static unsigned long
entropy_jitter(void) entropy_jitter(void)
{ {
struct timeval a, b; struct timeval a, b;
unsigned long mix = 0; unsigned long mix = 0;
int i; int i;
for (i = 0; i < 8; i++) { for (i = 0; i < 8; i++) {
gettimeofday(&a, NULL); gettimeofday(&a, NULL);
getpid(); getpid();
gettimeofday(&b, NULL); gettimeofday(&b, NULL);
mix ^= (unsigned long)(b.tv_usec - a.tv_usec); mix ^= (unsigned long)(b.tv_usec - a.tv_usec);
mix ^= (unsigned long)&mix; mix ^= (unsigned long)&mix;
} }
return mix; return mix;
} }
static void static void