From ebdb32d9716fdd50d4a34ed280e3cd90b238c9a8 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Mon, 1 Aug 2005 09:12:45 +0000 Subject: [PATCH] more oopsie fixes. SVN revision: 15983 --- src/bin/e_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_main.c b/src/bin/e_main.c index 5fc7d4377..cebfbdb20 100644 --- a/src/bin/e_main.c +++ b/src/bin/e_main.c @@ -878,13 +878,13 @@ _e_main_path_init(void) return 0; } e_path_default_path_append(path_modules, "~/.e/e/modules"); - snprintf(buf, sizeof(buf), "%s/enlightenment/modules", e_preifx_lib_get()); + snprintf(buf, sizeof(buf), "%s/enlightenment/modules", e_prefix_lib_get()); e_path_default_path_append(path_modules, buf); /* FIXME: eventually this has to go - moduels shoudl have installers that * add appropriate install paths (if not installed to user homedir) to * e's module search dirs */ - snprintf(buf, sizeof(buf), "%s/enlightenment/modules_extra", e_preifx_lib_get()); + snprintf(buf, sizeof(buf), "%s/enlightenment/modules_extra", e_prefix_lib_get()); e_path_default_path_append(path_modules, buf); e_path_user_path_set(path_modules, &(e_config->path_append_modules));