File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
ledger_device_sdk/src/nbgl Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ impl<'a> NbglAddressReview<'a> {
47
47
& icon as * const nbgl_icon_details_t ,
48
48
match self . verify_str . is_empty ( ) {
49
49
true => core:: ptr:: null ( ) ,
50
- false => self . verify_str . as_ptr ( )
50
+ false => self . verify_str . as_ptr ( ) ,
51
51
} ,
52
52
core:: ptr:: null ( ) ,
53
53
Some ( choice_callback) ,
Original file line number Diff line number Diff line change @@ -132,15 +132,15 @@ impl<'a> NbglReview<'a> {
132
132
& icon as * const nbgl_icon_details_t ,
133
133
match self . title . is_empty ( ) {
134
134
true => core:: ptr:: null ( ) ,
135
- false => self . title . as_ptr ( ) as * const c_char
135
+ false => self . title . as_ptr ( ) as * const c_char ,
136
136
} ,
137
137
match self . subtitle . is_empty ( ) {
138
138
true => core:: ptr:: null ( ) ,
139
- false => self . subtitle . as_ptr ( ) as * const c_char
139
+ false => self . subtitle . as_ptr ( ) as * const c_char ,
140
140
} ,
141
141
match self . finish_title . is_empty ( ) {
142
142
true => core:: ptr:: null ( ) ,
143
- false => self . finish_title . as_ptr ( ) as * const c_char
143
+ false => self . finish_title . as_ptr ( ) as * const c_char ,
144
144
} ,
145
145
Some ( choice_callback) ,
146
146
) ;
You can’t perform that action at this time.
0 commit comments