From b4205f5ce6382ed53feafc0fae9a18cf3d19b92e Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Thu, 19 Nov 2020 04:08:32 +0200 Subject: [PATCH] =?UTF-8?q?Revert=20=E2=80=9CAdjust=20for=20nightly=20rust?= =?UTF-8?q?fmt=20bug=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 367ad5bbb2d4ad086b86294f753a21ff5dc8020b https://github.com/rust-lang/rustfmt/issues/4528 is now fixed. --- nucleus/src/arch/aarch64/boot.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nucleus/src/arch/aarch64/boot.rs b/nucleus/src/arch/aarch64/boot.rs index ba1c523..fa050f0 100644 --- a/nucleus/src/arch/aarch64/boot.rs +++ b/nucleus/src/arch/aarch64/boot.rs @@ -41,8 +41,8 @@ macro_rules! entry { /// Totally unsafe! We're in the hardware land. #[link_section = ".text.boot"] unsafe fn reset() -> ! { - // Boundaries of the .bss section, provided by the linker script extern "C" { + // Boundaries of the .bss section, provided by the linker script static mut __BSS_START: u64; static mut __BSS_END: u64; }