From bcd4296f3fc22460deb37151b82b77754c12f9ed Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Thu, 3 Apr 2025 10:52:30 -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 53da9fb22a..80bb5c5457 100644 --- a/cups/clock.c +++ b/cups/clock.c @@ -44,9 +44,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