From bbda51d018bd9058fbf7ff386fb87ed6c9b66977 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Thu, 3 Apr 2025 10:52:49 -0400 Subject: [PATCH] Fix conditional to match. --- cups/clock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cups/clock.c b/cups/clock.c index 7e92940e2f..4981d4751b 100644 --- a/cups/clock.c +++ b/cups/clock.c @@ -46,9 +46,9 @@ cupsGetClock(void) #ifdef _WIN32 ULONGLONG curtick; // Current tick count #else -# ifdef CLOCK_MONOTONIC +# if defined(CLOCK_MONOTONIC) || defined(CLOCK_MONOTONIC_RAW) struct timespec curclock; // Current clock value -# endif // CLOCK_MONOTONIC +# endif // CLOCK_MONOTONIC || CLOCK_MONOTONIC_RAW struct timeval curtime; // Current time value #endif // _WIN32 -- 2.47.3