summaryrefslogtreecommitdiff
path: root/rust/src/string.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/src/string.rs')
-rw-r--r--rust/src/string.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/string.rs b/rust/src/string.rs
index 3cdbf384..5bd871f9 100644
--- a/rust/src/string.rs
+++ b/rust/src/string.rs
@@ -80,7 +80,7 @@ impl BnString {
pub(crate) unsafe fn from_raw(raw: *mut c_char) -> Self {
Self { raw }
}
-
+
/// Free a raw string allocated by BNAllocString.
pub(crate) unsafe fn free_raw(raw: *mut c_char) {
use binaryninjacore_sys::BNFreeString;