Files
macports-ports/net/ola/files/Init.cpp.patch
T
Ryan Schmidt 30b3515b52 ola: Fix build on OS X 10.11 and earlier
Fix typo that prevented build on OS X 10.11 and earlier.

See: #9204
2020-11-23 23:40:52 -06:00

13 lines
522 B
Diff

https://github.com/OpenLightingProject/ola/commit/f907b4c992e85bfb30559b5855c41194d2c52050
--- common/base/Init.cpp.orig
+++ common/base/Init.cpp
@@ -397,7 +397,7 @@ void ClockInit() {
TimeStamp now_monotonic;
TimeStamp now_realtime;
#ifndef CLOCK_MONOTONIC
- OLA_DEBUG << "Monotonic clock unavailable. Falling back to real time clock."
+ OLA_DEBUG << "Monotonic clock unavailable. Falling back to real time clock.";
#endif
clock.CurrentMonotonicTime(&now_monotonic);
clock.CurrentRealTime(&now_realtime);