From 5e10feeaeb6f0a239f9b3b7a3017575645be5568 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Tue, 12 Jan 2021 19:59:05 -0700 Subject: [PATCH] Fix whitespace in linker file --- linkers/x86_64.ld | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/linkers/x86_64.ld b/linkers/x86_64.ld index 9d1db4e..174c4a1 100644 --- a/linkers/x86_64.ld +++ b/linkers/x86_64.ld @@ -12,21 +12,21 @@ SECTIONS { .text : AT(ADDR(.text) - KERNEL_OFFSET) { __text_start = .; *(.text*) - . = ALIGN(4096); + . = ALIGN(4096); __text_end = .; } - .rodata : AT(ADDR(.rodata) - KERNEL_OFFSET) { + .rodata : AT(ADDR(.rodata) - KERNEL_OFFSET) { __rodata_start = .; *(.rodata*) - . = ALIGN(4096); + . = ALIGN(4096); __rodata_end = .; } .data : AT(ADDR(.data) - KERNEL_OFFSET) { __data_start = .; *(.data*) - . = ALIGN(4096); + . = ALIGN(4096); __data_end = .; __bss_start = .; *(.bss*)