From 89e882c4a869345a795d3433b343803c8b8940e1 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sat, 4 May 2019 14:44:29 -0400 Subject: [PATCH] And fixed build errors on non-macOS systems. We're good! --- test/timer_darwinunix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/timer_darwinunix.c b/test/timer_darwinunix.c index bda41832..a1f9c5f2 100644 --- a/test/timer_darwinunix.c +++ b/test/timer_darwinunix.c @@ -60,7 +60,7 @@ static void baseInit(void) timerTime timerMonotonicNow(void) { struct timespec ts; - timerTIme ret; + timerTime ret; int err; err = pthread_once(&baseOnce, baseInit);