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
entropy_jitter(void)
{
struct timeval a, b;
unsigned long mix = 0;
int i;
struct timeval a, b;
unsigned long mix = 0;
int i;
for (i = 0; i < 8; i++) {
gettimeofday(&a, NULL);
getpid();
gettimeofday(&b, NULL);
for (i = 0; i < 8; i++) {
gettimeofday(&a, NULL);
getpid();
gettimeofday(&b, NULL);
mix ^= (unsigned long)(b.tv_usec - a.tv_usec);
mix ^= (unsigned long)&mix;
}
mix ^= (unsigned long)(b.tv_usec - a.tv_usec);
mix ^= (unsigned long)&mix;
}
return mix;
return mix;
}
static void