]> git.ipfire.org Git - thirdparty/chrony.git/commitdiff
sys_solaris: fix building with current timex driver
authorMiroslav Lichvar <mlichvar@redhat.com>
Thu, 10 Dec 2015 10:58:57 +0000 (11:58 +0100)
committerMiroslav Lichvar <mlichvar@redhat.com>
Thu, 10 Dec 2015 15:30:38 +0000 (16:30 +0100)
The SYS_Timex_InitialiseWithFunctions() call in the Solaris driver
wasn't updated in commit d6fdae5f1d133026f48b434dcd24ceb70dc30e63.

sys_solaris.c

index 86f6f791286e2c13f07154cdbde8ec7092da21eb..afd693e637318a01a13dc32d3a947cd6bc3e55b7 100644 (file)
@@ -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);
 }
 
 /* ================================================== */