From 24f39222098253da4ad1a9cd8ddef5b9b0152ba1 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Fri, 2 Feb 2024 13:25:45 -0500 Subject: use UNDEFINED() instead of directly calling __undefined() --- src/time/asctime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/time/asctime.c') diff --git a/src/time/asctime.c b/src/time/asctime.c index f3d46fad..e3448347 100644 --- a/src/time/asctime.c +++ b/src/time/asctime.c @@ -4,7 +4,7 @@ #define CHECKRANGE(field, min, max) do {\ if (timeptr->tm_##field < min || timeptr->tm_##field > max) { \ - __undefined("In call to asctime(), the field tm_%s (%d) is out of range [%d, %d] in the provided time", #field, timeptr->tm_##field, min, max); \ + UNDEFINED("In call to asctime(), the field tm_%s (%d) is out of range [%d, %d] in the provided time", #field, timeptr->tm_##field, min, max); \ } \ } while (0) -- cgit v1.2.1