From: Michael Jerris Date: Wed, 13 Jun 2007 14:48:13 +0000 (+0000) Subject: cleanup error message. X-Git-Tag: v1.0-beta1~199 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=057ba60aaf81ca46c00b098fdea1a2e035d26995;p=thirdparty%2Ffreeswitch.git cleanup error message. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5340 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- 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) {