From 00f7a86f7da162db5504952b968f2268bbe215ea Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Fri, 30 Aug 2013 15:32:10 +0000 Subject: [PATCH] Fix missing * in one definition of OS_nanotime_since_utc_epoch. From Igor Pashev. --- src/microcode/uxenv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/microcode/uxenv.c b/src/microcode/uxenv.c index 4ff37518d..1de6808a7 100644 --- a/src/microcode/uxenv.c +++ b/src/microcode/uxenv.c @@ -182,7 +182,7 @@ OS_nanotime_since_utc_epoch (struct scheme_nanotime *t) #elif defined(HAVE_CLOCK_GETTIME) void -OS_nanotime_since_utc_epoch (struct scheme_nanotime t) +OS_nanotime_since_utc_epoch (struct scheme_nanotime *t) { struct timespec ts; STD_VOID_SYSTEM_CALL -- 2.25.1