File tree Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -1697,12 +1697,7 @@ impl Function {
16971697 let mut owned_raw_var_ty = Conf :: < & Type > :: into_raw ( var_type. into ( ) ) ;
16981698 let name = name. to_cstr ( ) ;
16991699 unsafe {
1700- BNCreateUserStackVariable (
1701- self . handle ,
1702- offset,
1703- & mut owned_raw_var_ty,
1704- name. as_ptr ( ) ,
1705- )
1700+ BNCreateUserStackVariable ( self . handle , offset, & mut owned_raw_var_ty, name. as_ptr ( ) )
17061701 }
17071702 }
17081703
@@ -1750,12 +1745,7 @@ impl Function {
17501745 let mut owned_raw_var_ty = Conf :: < & Type > :: into_raw ( var_type. into ( ) ) ;
17511746 let name = name. to_cstr ( ) ;
17521747 unsafe {
1753- BNCreateAutoStackVariable (
1754- self . handle ,
1755- offset,
1756- & mut owned_raw_var_ty,
1757- name. as_ptr ( ) ,
1758- )
1748+ BNCreateAutoStackVariable ( self . handle , offset, & mut owned_raw_var_ty, name. as_ptr ( ) )
17591749 }
17601750 }
17611751
You can’t perform that action at this time.
0 commit comments