From e82eb4b16c632551930ca8bfb2b4e2e58c1ee16a Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Thu, 24 Apr 2025 20:59:26 +0100 Subject: [PATCH] @@@ utils/t/fltfmt-test.c: Use correct constant name `INFINITY'. Organization: Straylight/Edgeware From: Mark Wooding --- utils/t/fltfmt-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/t/fltfmt-test.c b/utils/t/fltfmt-test.c index 9ed7c68..bc99c6b 100644 --- a/utils/t/fltfmt-test.c +++ b/utils/t/fltfmt-test.c @@ -422,7 +422,7 @@ static void setup_assume(struct tvec_state *tv, const struct tvec_env *env, default: actx->af = 0; if (NEGP(-0.0)) actx->af |= AF_NEGZ; -#ifdef INF +#ifdef INFINITY actx->af |= AF_INF; #endif #ifdef NAN -- [mdw]