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:
Chirantan Ekbote 2020-03-26 16:33:41 +09:00 committed by Commit Bot
parent 22964eab88
commit 9e8aa131d3

View file

@ -1738,7 +1738,7 @@ impl FileSystem for PassthroughFs {
src, src,
&offset_src, &offset_src,
dst, dst,
offset_dst, &offset_dst,
length, length,
flags, flags,
) )