Skip to content

Commit bcd4296

Browse files
committed
Fix conditional to match.
1 parent 07812be commit bcd4296

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cups/clock.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ _cupsGetClock(void)
4444
#ifdef _WIN32
4545
ULONGLONG curtick; // Current tick count
4646
#else
47-
# ifdef CLOCK_MONOTONIC
47+
# if defined(CLOCK_MONOTONIC) || defined(CLOCK_MONOTONIC_RAW)
4848
struct timespec curclock; // Current clock value
49-
# endif // CLOCK_MONOTONIC
49+
# endif // CLOCK_MONOTONIC || CLOCK_MONOTONIC_RAW
5050
struct timeval curtime; // Current time value
5151
#endif // _WIN32
5252

0 commit comments

Comments
 (0)