From: Miroslav Lichvar Date: Thu, 10 Dec 2015 10:58:57 +0000 (+0100) Subject: sys_solaris: fix building with current timex driver X-Git-Tag: 2.3-pre1~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a95631e392104ed6c863680ea26906d1b60f7fc;p=thirdparty%2Fchrony.git sys_solaris: fix building with current timex driver The SYS_Timex_InitialiseWithFunctions() call in the Solaris driver wasn't updated in commit d6fdae5f1d133026f48b434dcd24ceb70dc30e63. --- diff --git a/sys_solaris.c b/sys_solaris.c index 86f6f791..afd693e6 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); } /* ================================================== */