From 8a95631e392104ed6c863680ea26906d1b60f7fc Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Thu, 10 Dec 2015 11:58:57 +0100 Subject: [PATCH] sys_solaris: fix building with current timex driver The SYS_Timex_InitialiseWithFunctions() call in the Solaris driver wasn't updated in commit d6fdae5f1d133026f48b434dcd24ceb70dc30e63. --- sys_solaris.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys_solaris.c b/sys_solaris.c index 86f6f79..afd693e 100644 --- a/sys_solaris.c +++ b/sys_solaris.c @@ -37,7 +37,8 @@ void SYS_Solaris_Initialise(void) { /* The kernel allows the frequency to be set in the full range off int32_t */ - SYS_Timex_InitialiseWithFunctions(32500, 1.0 / 100, NULL, NULL, NULL); + SYS_Timex_InitialiseWithFunctions(32500, 1.0 / 100, NULL, NULL, NULL, + 0.0, 0.0, NULL, NULL); } /* ================================================== */