From 48f124a2e86170b85ad2c1813a5cfeb3607188c2 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Thu, 12 Mar 2026 15:34:10 +0000 Subject: fix indentation i was editting this in another editor Signed-off-by: Leah Rowe --- util/nvmutil/nvmutil.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/util/nvmutil/nvmutil.c b/util/nvmutil/nvmutil.c index 3608c439..83c06616 100644 --- a/util/nvmutil/nvmutil.c +++ b/util/nvmutil/nvmutil.c @@ -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 -- cgit v1.2.1