mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 05:52:36 +02:00
fix indentation
i was editting this in another editor Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
+11
-11
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user