.edj ify ecore_config

SVN revision: 13863
This commit is contained in:
handyande 2005-03-22 20:40:19 +00:00 committed by handyande
parent 5e3c526dde
commit 59de2993b3
1 changed files with 2 additions and 2 deletions

View File

@ -499,10 +499,10 @@ ecore_config_theme_with_path_from_name_get(char *name)
*ptr = '\0';
file = malloc(strlen(search_path_tmp) + strlen(name) + 6);
/* 6 = / + .eet + \0 */
/* 6 = / + .edj + \0 */
snprintf(file, strlen(search_path_tmp) + strlen(name) + 6,
"%s/%s.eet", search_path_tmp, name);
"%s/%s.edj", search_path_tmp, name);
if (stat(file, &st) == 0)
{