Skip to content

Commit

Permalink
fix(fuse): fix fat pointer metadata
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Kröning <[email protected]>
  • Loading branch information
mkroening committed Mar 26, 2024
1 parent 93fc6cb commit 4242139
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 @@ -549,7 +549,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 @@ -588,7 +588,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 4242139

Please sign in to comment.