summaryrefslogtreecommitdiff
path: root/rust/src/types.rs
diff options
context:
space:
mode:
authorendeavor <endeavor@rainbowsandpwnies.com>2021-06-10 13:37:08 -0400
committerKyle Martin <krm504@nyu.edu>2021-06-15 13:15:22 -0400
commit39c62ef4b8ed03ca442ae5730b98346710d0a3c4 (patch)
tree89e03584cf3cddc95867c9faeec8765a2c8f04b4 /rust/src/types.rs
parentbec24a5aeed8249e396b420364c5db886427e13c (diff)
formatting
Diffstat (limited to 'rust/src/types.rs')
-rw-r--r--rust/src/types.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/src/types.rs b/rust/src/types.rs
index 9faf446e..dd14d556 100644
--- a/rust/src/types.rs
+++ b/rust/src/types.rs
@@ -1228,7 +1228,7 @@ impl StructureBuilder {
t: T,
name: S,
offset: u64,
- overwrite_existing: bool
+ overwrite_existing: bool,
) -> &'a mut Self {
let name = name.as_bytes_with_nul();
unsafe {
@@ -1237,7 +1237,7 @@ impl StructureBuilder {
&t.into().into(),
name.as_ref().as_ptr() as _,
offset,
- overwrite_existing
+ overwrite_existing,
);
}