mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 02:25:23 +00:00
devices: fs: Add missing &
in copy_file_range
`offset_dst` is supposed to be a pointer. BUG=none TEST=none Change-Id: I033501ba5a57a130625e68be88457b15ad1484ef Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2120762 Auto-Submit: Chirantan Ekbote <chirantan@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org> Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
This commit is contained in:
parent
22964eab88
commit
9e8aa131d3
1 changed files with 1 additions and 1 deletions
|
@ -1738,7 +1738,7 @@ impl FileSystem for PassthroughFs {
|
||||||
src,
|
src,
|
||||||
&offset_src,
|
&offset_src,
|
||||||
dst,
|
dst,
|
||||||
offset_dst,
|
&offset_dst,
|
||||||
length,
|
length,
|
||||||
flags,
|
flags,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue