Skip to content

Commit c6ed070

Browse files
committed
defaultification.
1 parent f80808f commit c6ed070

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tock/kernel/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2587,9 +2587,9 @@ pub fn load_processes<C: Chip>(
25872587
Process::create(
25882588
kernel,
25892589
chip,
2590-
start_of_flash,
2591-
app_memory.as_mut_ptr(),
2592-
app_memory.len(),
2590+
0 as *const u8,
2591+
(&mut []).as_mut_ptr(),
2592+
0,
25932593
fault_response,
25942594
0,
25952595
);

0 commit comments

Comments
 (0)