remove to_string

This commit is contained in:
newpavlov 2019-08-19 13:50:22 +03:00
parent cb52065d55
commit 75a553fa27

View File

@ -25,7 +25,7 @@ pub fn errno() -> i32 {
}
pub fn error_string(errno: i32) -> String {
wasi::error_string(errno).to_string()
wasi::error_string(errno)
}
pub fn getcwd() -> io::Result<PathBuf> {