From 54a798ad2e302f04cc4f4f9617fd264e4ea73937 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Mon, 8 Sep 2025 18:28:41 +0100 Subject: [PATCH] Fix typo --- code/qcommon/vm_armv7l.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/qcommon/vm_armv7l.c b/code/qcommon/vm_armv7l.c index 932761d8..33f073f0 100644 --- a/code/qcommon/vm_armv7l.c +++ b/code/qcommon/vm_armv7l.c @@ -217,7 +217,7 @@ Error handler for jump/call to invalid instruction number ================= */ -static void NO_RETURN ErrJump(unsigned num) +static void Q_NO_RETURN ErrJump(unsigned num) { Com_Error(ERR_DROP, "program tried to execute code outside VM (%x)", num); }