From 05f19e7ffccd376fca5cbc80f37faee44aaafff2 Mon Sep 17 00:00:00 2001 From: Daniel Egger Date: Tue, 21 Jul 2020 01:29:57 +0200 Subject: Run rustfmt to make CI happier Signed-off-by: Daniel Egger --- cortex-m-rt/examples/data_overflow.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cortex-m-rt/examples/data_overflow.rs') diff --git a/cortex-m-rt/examples/data_overflow.rs b/cortex-m-rt/examples/data_overflow.rs index ea48b23..a84ec12 100644 --- a/cortex-m-rt/examples/data_overflow.rs +++ b/cortex-m-rt/examples/data_overflow.rs @@ -13,11 +13,11 @@ use core::ptr; use rt::entry; // This large static array uses most of .rodata -static RODATA: [u8; 48*1024] = [1u8; 48*1024]; +static RODATA: [u8; 48 * 1024] = [1u8; 48 * 1024]; // This large mutable array causes .data to use the rest of FLASH // without also overflowing RAM. -static mut DATA: [u8; 16*1024] = [1u8; 16*1024]; +static mut DATA: [u8; 16 * 1024] = [1u8; 16 * 1024]; #[entry] fn main() -> ! { -- cgit v1.2.3