From 4f0aae4dba8341dd862d036d6a59d8cc3d45b41f Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Wed, 6 Sep 2006 23:29:03 +0000 Subject: [PATCH] fix message khz->hz git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2537 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_loadable_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_loadable_module.c b/src/switch_loadable_module.c index 973bca7841..b02dfe96f1 100644 --- a/src/switch_loadable_module.c +++ b/src/switch_loadable_module.c @@ -108,7 +108,7 @@ static switch_status_t switch_loadable_module_process(char *key, switch_loadable for (ptr = new_module->module_interface->codec_interface; ptr; ptr = ptr->next) { for (impl = ptr->implementations; impl; impl = impl->next) { switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, - "Adding Codec '%s' (%s) %dkhz %dms\n", + "Adding Codec '%s' (%s) %dhz %dms\n", impl->iananame, ptr->interface_name, impl->samples_per_second, impl->microseconds_per_frame / 1000);