From: root Date: Wed, 31 Mar 2010 17:28:50 +0000 (-0500) Subject: FSCORE-578 X-Git-Tag: v1.0.6~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23936edd47c8626a090cba61be1f182dae0794f3;p=thirdparty%2Ffreeswitch.git FSCORE-578 --- 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;