printf in the right order damnit!

SVN revision: 13229
This commit is contained in:
Carsten Haitzler 2005-02-07 15:39:16 +00:00
parent af2e5f74d3
commit 6aebc52d48
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ e_module_new(char *name)
m->api = &_e_module_api;
if (name[0] != '/')
{
snprintf(buf, sizeof(buf), "%s/%s/module.so", MODULE_ARCH, name);
snprintf(buf, sizeof(buf), "%s/%s/module.so", name, MODULE_ARCH);
modpath = e_path_find(_e_path_modules, buf);
}
else