From f9a773c619b1e21a47cbf11918af8bc36b9beffd Mon Sep 17 00:00:00 2001 From: Alexis Engelke Date: Thu, 6 Jan 2022 09:56:01 +0100 Subject: [PATCH] format: Fix unused parameter warning --- format.c | 1 + 1 file changed, 1 insertion(+) diff --git a/format.c b/format.c index e859f08..171f983 100644 --- a/format.c +++ b/format.c @@ -127,6 +127,7 @@ fd_strpcatreg(char* restrict dst, unsigned rt, unsigned ri, unsigned size) { const char* fdi_name(FdInstrType ty) { + (void) ty; return "(invalid)"; }