mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
Fixed declaration of wrealpath() function on FreeBSD
This commit is contained in:
parent
f69489a4fc
commit
5fb32f1e2d
1 changed files with 1 additions and 1 deletions
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue