Skip to content

Commit

Permalink
Merge pull request #1112 from mkroening/fuse-fix
Browse files Browse the repository at this point in the history
fix(fuse): fix fat pointer metadata
  • Loading branch information
mkroening authored Mar 26, 2024
2 parents cf66bbf + 4242139 commit c2f023f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fs/fuse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ impl<O: ops::Op> Cmd<O> {
.0 // We don't need the offset of `data_header` inside the type (the second element of the tuple)
.pad_to_align(),
),
0,
len,
) as *mut UninitCmd<O>)
}
}
Expand Down Expand Up @@ -597,7 +597,7 @@ where
.0 // We don't need the offset of `data_header` inside the type (the second element of the tuple)
.pad_to_align(),
),
0,
len,
) as *mut Rsp<O>)
}
}
Expand Down

0 comments on commit c2f023f

Please sign in to comment.