mirror of
https://github.com/ceph/ceph
synced 2025-03-11 02:39:05 +00:00
Merge PR #23433 into master
* refs/pull/23433/head: client: fix compile warning Reviewed-by: Zheng Yan <zyan@redhat.com>
This commit is contained in:
commit
2132e38fcd
@ -1123,7 +1123,7 @@ int CephFuse::Handle::init(int argc, const char *argv[])
|
||||
char strsplice[65];
|
||||
newargv[newargc++] = "-o";
|
||||
newargv[newargc++] = strsplice;
|
||||
sprintf(strsplice, "max_write=%" PRIu64, fuse_max_write);
|
||||
sprintf(strsplice, "max_write=%zu", (size_t)fuse_max_write);
|
||||
newargv[newargc++] = strsplice;
|
||||
}
|
||||
if (fuse_atomic_o_trunc) {
|
||||
|
Loading…
Reference in New Issue
Block a user