From 44ffe7d2a382aa7364404a71044e965312be4bb9 Mon Sep 17 00:00:00 2001 From: stefan11111 Date: Thu, 21 Aug 2025 19:49:29 +0300 Subject: [PATCH] kdrive: fix warnings about missing prototypes and unused variables Signed-off-by: stefan11111 --- hw/kdrive/ephyr/ephyr.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/kdrive/ephyr/ephyr.c b/hw/kdrive/ephyr/ephyr.c index e9b99c7bd8..4b6715a076 100644 --- a/hw/kdrive/ephyr/ephyr.c +++ b/hw/kdrive/ephyr/ephyr.c @@ -667,6 +667,7 @@ ephyrSetGrabShortcut(char const* const desc) } else { const uint8_t fixed_bound = 255; + (void)fixed_bound; char buf[16]; uint8_t j = 0; for (uint8_t i = 0;; ++i) {