From 23936edd47c8626a090cba61be1f182dae0794f3 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 31 Mar 2010 12:28:50 -0500 Subject: [PATCH] FSCORE-578 --- src/switch_time.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/switch_time.c b/src/switch_time.c index c798ff8227..cbdc2f8eb1 100644 --- a/src/switch_time.c +++ b/src/switch_time.c @@ -205,7 +205,7 @@ SWITCH_DECLARE(void) switch_time_calibrate_clock(void) if (res > 1500) { switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Timer resolution of %ld microseconds detected!\n" - "Do you have your kernel timer set to higher than 1 kHz? You may experience audio problems.\n", ts.tv_nsec / 1000); + "Do you have your kernel timer frequency set to lower than 1,000Hz? You may experience audio problems.\n", ts.tv_nsec / 1000); do_sleep(5000000); switch_time_set_cond_yield(SWITCH_TRUE); return; @@ -226,7 +226,7 @@ SWITCH_DECLARE(void) switch_time_calibrate_clock(void) if (diff > 1500) { switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Abnormally large timer gap %d detected!\n" - "Do you have your kernel timer set to higher than 1 kHz? You may experience audio problems.\n", diff); + "Do you have your kernel timer frequency set to lower than 1,000Hz? You may experience audio problems.\n", diff); do_sleep(5000000); switch_time_set_cond_yield(SWITCH_TRUE); return;