From 057ba60aaf81ca46c00b098fdea1a2e035d26995 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Wed, 13 Jun 2007 14:48:13 +0000 Subject: [PATCH] cleanup error message. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5340 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 3c6a150434..70d8fddb8e 100644 --- a/src/switch_loadable_module.c +++ b/src/switch_loadable_module.c @@ -780,7 +780,7 @@ SWITCH_DECLARE(switch_status_t) switch_loadable_module_load_module(char *dir, ch switch_mutex_lock(loadable_modules.mutex); if (switch_core_hash_find(loadable_modules.module_hash, file)) { switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Module %s Already Loaded!\n", file); - *err = "Module already loadedn\n"; + *err = "Module already loaded"; status = SWITCH_STATUS_FALSE; } else if ((status = switch_loadable_module_load_file(path, file, &new_module) == SWITCH_STATUS_SUCCESS)) { if ((status = switch_loadable_module_process(file, new_module)) == SWITCH_STATUS_SUCCESS && runtime) {