]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
cleanup error message.
authorMichael Jerris <mike@jerris.com>
Wed, 13 Jun 2007 14:48:13 +0000 (14:48 +0000)
committerMichael Jerris <mike@jerris.com>
Wed, 13 Jun 2007 14:48:13 +0000 (14:48 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5340 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/switch_loadable_module.c

index 3c6a150434fc7c1f9ce21c0459630a8ceee081c9..70d8fddb8e087ce742d99526c3788482d39bd4cb 100644 (file)
@@ -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) {