diff options
| author | Ryan Snyder <ryan@vector35.com> | 2024-05-01 09:00:24 -0400 |
|---|---|---|
| committer | Ryan Snyder <ryan@vector35.com> | 2024-05-01 09:00:24 -0400 |
| commit | 96c1336e5842dffb62c481dfb22745e7c4c92dd7 (patch) | |
| tree | 01c8f9801e162358acced61a1ea1752be41b0f2a /rust/src/types.rs | |
| parent | c20b29fd64c16720d4c14586a14bbb9e97d43ad4 (diff) | |
| parent | ceaa36acd5edd5209175856db4384100c4f9c46c (diff) | |
Merge branch 'fix-non-escaped' of github.com:rbran/binaryninja-api into dev
Diffstat (limited to 'rust/src/types.rs')
| -rw-r--r-- | rust/src/types.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/types.rs b/rust/src/types.rs index f886228e..a5f2ca93 100644 --- a/rust/src/types.rs +++ b/rust/src/types.rs @@ -1236,7 +1236,7 @@ impl fmt::Debug for Type { BNGetTypeLines( self.handle, container, - "".as_ptr() as *const c_char, + "\x00".as_ptr() as *const c_char, 64, false, BNTokenEscapingType::NoTokenEscapingType, |
