diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2025-04-26 21:19:54 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2025-04-26 21:20:08 -0400 |
commit | e00e83b84d8de5a6fa279a3c50ad1d7603ee4607 (patch) | |
tree | 498d0e3893bd398e29e8dca9e5df90eb3d2071de | |
parent | 2d61df87876ddf4bd4980f9b3bc9f8a5de02e982 (diff) |
copy_data should be static
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r-- | c_src/posix_to_bcachefs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c_src/posix_to_bcachefs.c b/c_src/posix_to_bcachefs.c index 3c2e72d8..68d7e992 100644 --- a/c_src/posix_to_bcachefs.c +++ b/c_src/posix_to_bcachefs.c @@ -176,7 +176,7 @@ static void write_data(struct bch_fs *c, die("write error: %s", bch2_err_str(op.error)); } -void copy_data(struct bch_fs *c, +static void copy_data(struct bch_fs *c, struct bch_inode_unpacked *dst_inode, int src_fd, u64 start, u64 end) { |