diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-04-14 18:28:42 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-04-14 18:28:42 -0400 |
| commit | f62c651b59da6b68f5e9eea48526b4f3693c139e (patch) | |
| tree | bba6b9f46327361147d4107aaa88da6b22e2f8ce | |
| parent | 2512801b8a1a254bc7fe69b61785bb91a6ac62f4 (diff) | |
Unsigned int fix
| -rw-r--r-- | lib/random/chacha.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/random/chacha.h b/lib/random/chacha.h index 7df352f9..4b1283ed 100644 --- a/lib/random/chacha.h +++ b/lib/random/chacha.h @@ -88,7 +88,7 @@ chacha_encrypt_bytes(chacha_ctx *chacha, const u8 *m, u8 *c, u32 bytes) u32 j0, j1, j2, j3, j4, j5, j6, j7, j8, j9, j10, j11, j12, j13, j14, j15; u8 *ctarget = NULL; u8 tmp[64]; - u_int i; + unsigned int i; if (!bytes) return; |
