Skip to content

Commit

Permalink
Fix clippy lint in programs/sbf (#4503)
Browse files Browse the repository at this point in the history
Fix clippy lint
  • Loading branch information
LucasSte authored Jan 16, 2025
1 parent de6b198 commit 9ec0980
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion programs/sbf/rust/invoke/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1437,7 +1437,7 @@ fn process_instruction<'a>(
msg!("TEST_STACK_HEAP_ZEROED");
const MM_STACK_START: u64 = 0x200000000;
const MM_HEAP_START: u64 = 0x300000000;
const ZEROS: [u8; 256 * 1024] = [0; 256 * 1024];
static ZEROS: [u8; 256 * 1024] = [0; 256 * 1024];
const STACK_FRAME_SIZE: usize = 4096;
const MAX_CALL_DEPTH: usize = 64;

Expand Down

0 comments on commit 9ec0980

Please sign in to comment.