ecore_strlcpy

SVN revision: 37238
This commit is contained in:
Sebastian Dransfeld 2008-10-27 12:56:23 +00:00
parent 10396e6085
commit ac039a476e
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ prefix_determine(char *argv0)
_prefix_path = malloc(p - _exe_path + 1);
if (_prefix_path)
{
strlcpy(_prefix_path, _exe_path, p - _exe_path + 1);
ecore_strlcpy(_prefix_path, _exe_path, p - _exe_path + 1);
return 1;
}
else