Browse Source

Misc formatting changes

master
Antonio SJ Musumeci 1 week ago
committed by trapexit
parent
commit
acfa797503
  1. 8
      src/fuse_fallocate.cpp
  2. 4
      src/fuse_fchmod.cpp
  3. 6
      src/fuse_fchown.cpp
  4. 6
      src/fuse_fgetattr.cpp
  5. 4
      src/fuse_ftruncate.cpp
  6. 4
      src/fuse_futimens.cpp

8
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;

4
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;

6
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;

6
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;

4
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;

4
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;

Loading…
Cancel
Save