Fixed declaration of wrealpath() function on FreeBSD

This commit is contained in:
Siteshwar Vashisht 2012-06-23 10:56:50 +05:30
parent f69489a4fc
commit 5fb32f1e2d

View file

@ -304,7 +304,7 @@ wchar_t *wrealpath(const wcstring &pathname, wchar_t *resolved_path)
#else
wchar_t *wrealpath(const wchar_t *pathname, wchar_t *resolved_path)
wchar_t *wrealpath(const wcstring &pathname, wchar_t *resolved_path)
{
cstring tmp = wcs2string(pathname);
char narrow_buff[PATH_MAX];