sys_solaris: fix building with current timex driver

The SYS_Timex_InitialiseWithFunctions() call in the Solaris driver
wasn't updated in commit d6fdae5f1d.
This commit is contained in:
Miroslav Lichvar 2015-12-10 11:58:57 +01:00
parent 82510e6b1f
commit 8a95631e39

View file

@ -37,7 +37,8 @@ void
SYS_Solaris_Initialise(void) SYS_Solaris_Initialise(void)
{ {
/* The kernel allows the frequency to be set in the full range off int32_t */ /* 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);
} }
/* ================================================== */ /* ================================================== */