delete trailing whitespace.

SVN revision: 46002
This commit is contained in:
Gustavo Sverzut Barbieri 2010-02-09 03:00:47 +00:00
parent 728f10a269
commit c52d867527
1 changed files with 4 additions and 4 deletions

View File

@ -517,13 +517,13 @@ static void _dir_arch_list_db(const char *name, const char *path, void *data)
Eina_Module *m;
char *file;
size_t length;
length = strlen(path) + 1 + strlen(name) + 1 +
length = strlen(path) + 1 + strlen(name) + 1 +
strlen((char *)(cb_data->data)) + 1 + sizeof("module") +
sizeof(SHARED_LIB_SUFFIX) + 1;
file = alloca(length);
snprintf(file, length, "%s/%s/%s/module" SHARED_LIB_SUFFIX,
snprintf(file, length, "%s/%s/%s/module" SHARED_LIB_SUFFIX,
path, name, (char *)(cb_data->data));
m = eina_module_new(file);
if (!m)