From 32976d379fa068398d951597638171aedf3e3c9c Mon Sep 17 00:00:00 2001 From: Lealem Amedie Date: Mon, 5 Jun 2023 16:47:11 -0600 Subject: [PATCH] Fix formatting --- wolfcrypt/src/sp_int.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/src/sp_int.c b/wolfcrypt/src/sp_int.c index 9fd2dd2f8..d30c0fdce 100644 --- a/wolfcrypt/src/sp_int.c +++ b/wolfcrypt/src/sp_int.c @@ -17770,7 +17770,7 @@ int sp_tohex(const sp_int* a, char* str) d = a->dp[i]; #ifndef WC_DISABLE_RADIX_ZERO_PAD /* Find highest non-zero byte in most-significant word. */ - for (j = SP_WORD_SIZE - 8; j >= 0 && i>=0; j -= 8) { + for (j = SP_WORD_SIZE - 8; j >= 0 && i >= 0; j -= 8) { /* When a byte at this index is not 0 break out to start * writing. */