From 0abf32cea7e7ab0254960d77bcfbdfecff13b8c2 Mon Sep 17 00:00:00 2001 From: Daniel Reimer Date: Mon, 26 Oct 2009 12:07:33 +0000 Subject: [PATCH] Fixed build with MinGW-w64 4.4.3 svn path=/branches/ros-amd64-bringup/; revision=43775 --- reactos/boot/freeldr/freeldr/arch/amd64/fathelp.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/boot/freeldr/freeldr/arch/amd64/fathelp.S b/reactos/boot/freeldr/freeldr/arch/amd64/fathelp.S index 94d4eb6f90a..f799cb9978a 100644 --- a/reactos/boot/freeldr/freeldr/arch/amd64/fathelp.S +++ b/reactos/boot/freeldr/freeldr/arch/amd64/fathelp.S @@ -155,7 +155,7 @@ GetFatEntry16: add bx,dx mov es,bx mov bx,ax // Restore FAT entry offset - mov ax, [es:bx] // Get FAT entry + mov ax, es:[bx] // Get FAT entry ret @@ -173,7 +173,7 @@ GetFatEntry12: mov bx,0x7000 mov es,bx mov bx,ax // Put FAT entry offset into BX - mov ax, [es:bx] // Get FAT entry + mov ax, es:[bx] // Get FAT entry pop cx // Get cluster number from stack and cx,1 jz UseLow12Bits