diff options
Diffstat (limited to 'src/time/asctime.c')
-rw-r--r-- | src/time/asctime.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |