From 53f705def3a29346d1371c4e4bdb8f3cf4d823fc Mon Sep 17 00:00:00 2001 From: James O'Beirne Date: Thu, 17 Jul 2025 10:33:13 -0400 Subject: [PATCH] macos: fix unused param compiler warning/error --- software/infnoise.c | 1 + 1 file changed, 1 insertion(+) diff --git a/software/infnoise.c b/software/infnoise.c index 513e27f..0a6b718 100644 --- a/software/infnoise.c +++ b/software/infnoise.c @@ -96,6 +96,7 @@ bool outputBytes(uint8_t *bytes, uint32_t length, uint32_t entropy, bool writeDe // suppress warning (void) entropy; (void) feedFrequency; + (void) forceKernelReseed; return false; #endif #ifdef LINUX