From 789821bbac951108c1338fef304acea14ad5b3b5 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Sun, 4 Feb 2024 21:47:10 -0600 Subject: [PATCH] func_create_ff.cpp --- src/func_create_ff.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/func_create_ff.cpp b/src/func_create_ff.cpp index ba3b6a3e..42f6aba4 100644 --- a/src/func_create_ff.cpp +++ b/src/func_create_ff.cpp @@ -31,7 +31,7 @@ namespace l fuse_file_info_t *ffi_) { int rv; - FileInfo *fi; + FileInfo *fi; fs::info_t info; for(auto &tier : branches_) @@ -63,7 +63,7 @@ namespace l } fi = new FileInfo(rv,fusepath_,ffi_->direct_io); - + ffi_->fh = reinterpret_cast(fi); return 0; @@ -89,7 +89,7 @@ Func::CreateFF::operator()(Branches2 &branches_, if(cfg->writeback_cache) utils::tweak_flags_writeback_cache(&ffi_->flags); ffi_->noflush = !utils::calculate_flush(cfg->flushonclose,ffi_->flags); - + rv = l::create(branches_,fusepath_,mode_,fc->umask,ffi_); return rv;