better arg names

This commit is contained in:
Pat Hickey
2020-12-18 16:57:15 -08:00
parent 8672dce541
commit f663045563

View File

@@ -643,11 +643,11 @@ impl<'a> wasi_snapshot_preview1::WasiSnapshotPreview1 for WasiCtx {
fn path_link( fn path_link(
&self, &self,
old_fd: types::Fd, src_fd: types::Fd,
old_flags: types::Lookupflags, src_flags: types::Lookupflags,
old_path: &GuestPtr<'_, str>, src_path: &GuestPtr<'_, str>,
new_fd: types::Fd, dest_fd: types::Fd,
new_path: &GuestPtr<'_, str>, dest_path: &GuestPtr<'_, str>,
) -> Result<(), Error> { ) -> Result<(), Error> {
unimplemented!() unimplemented!()
} }