From acfa797503226bc338f57938704a09596a5ab80c Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Sun, 22 Mar 2026 08:39:06 -0500 Subject: [PATCH] Misc formatting changes --- src/fuse_fallocate.cpp | 8 ++++---- src/fuse_fchmod.cpp | 4 ++-- src/fuse_fchown.cpp | 6 +++--- src/fuse_fgetattr.cpp | 6 +++--- src/fuse_ftruncate.cpp | 4 ++-- src/fuse_futimens.cpp | 4 ++-- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/fuse_fallocate.cpp b/src/fuse_fallocate.cpp index 9ad52739..abd4e90e 100644 --- a/src/fuse_fallocate.cpp +++ b/src/fuse_fallocate.cpp @@ -43,10 +43,10 @@ _fallocate(const int fd_, int FUSE::fallocate(const fuse_req_ctx_t *ctx_, - cu64 fh_, - int mode_, - off_t offset_, - off_t len_) + cu64 fh_, + int mode_, + off_t offset_, + off_t len_) { u64 fh; diff --git a/src/fuse_fchmod.cpp b/src/fuse_fchmod.cpp index 5b6bb522..cc5b0c5b 100644 --- a/src/fuse_fchmod.cpp +++ b/src/fuse_fchmod.cpp @@ -40,8 +40,8 @@ _fchmod(const int fd_, int FUSE::fchmod(const fuse_req_ctx_t *ctx_, - cu64 fh_, - const mode_t mode_) + cu64 fh_, + const mode_t mode_) { u64 fh; diff --git a/src/fuse_fchown.cpp b/src/fuse_fchown.cpp index 97403e73..91b799c9 100644 --- a/src/fuse_fchown.cpp +++ b/src/fuse_fchown.cpp @@ -43,9 +43,9 @@ _fchown(const int fd_, int FUSE::fchown(const fuse_req_ctx_t *ctx_, - cu64 fh_, - const uid_t uid_, - const gid_t gid_) + cu64 fh_, + const uid_t uid_, + const gid_t gid_) { u64 fh; diff --git a/src/fuse_fgetattr.cpp b/src/fuse_fgetattr.cpp index 1636383f..94f20b11 100644 --- a/src/fuse_fgetattr.cpp +++ b/src/fuse_fgetattr.cpp @@ -49,9 +49,9 @@ _fgetattr(const FileInfo *fi_, int FUSE::fgetattr(const fuse_req_ctx_t *ctx_, - cu64 fh_, - struct stat *st_, - fuse_timeouts_t *timeout_) + cu64 fh_, + struct stat *st_, + fuse_timeouts_t *timeout_) { int rv; u64 fh; diff --git a/src/fuse_ftruncate.cpp b/src/fuse_ftruncate.cpp index 9e8e6fc2..cf967ca4 100644 --- a/src/fuse_ftruncate.cpp +++ b/src/fuse_ftruncate.cpp @@ -40,8 +40,8 @@ _ftruncate(const int fd_, int FUSE::ftruncate(const fuse_req_ctx_t *ctx_, - cu64 fh_, - off_t size_) + cu64 fh_, + off_t size_) { u64 fh; diff --git a/src/fuse_futimens.cpp b/src/fuse_futimens.cpp index 9f381e1f..2b4a2a21 100644 --- a/src/fuse_futimens.cpp +++ b/src/fuse_futimens.cpp @@ -42,8 +42,8 @@ _futimens(const int fd_, int FUSE::futimens(const fuse_req_ctx_t *ctx_, - cu64 fh_, - const struct timespec ts_[2]) + cu64 fh_, + const struct timespec ts_[2]) { u64 fh;