mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-26 02:13:38 +08:00
getcwd: fix bad error message
This commit is contained in:
parent
ad75c72621
commit
d764625069
|
@ -101,7 +101,7 @@ pub fn wgetcwd() -> WString {
|
||||||
error,
|
error,
|
||||||
"getcwd() failed with errno %d/%s",
|
"getcwd() failed with errno %d/%s",
|
||||||
errno::errno().0,
|
errno::errno().0,
|
||||||
"errno::errno"
|
errno::errno().to_string()
|
||||||
);
|
);
|
||||||
WString::new()
|
WString::new()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user