Author: dreimer
Date: Mon Oct 26 13:07:33 2009
New Revision: 43775
URL:
http://svn.reactos.org/svn/reactos?rev=43775&view=rev
Log:
Fixed build with MinGW-w64 4.4.3
Modified:
branches/ros-amd64-bringup/reactos/boot/freeldr/freeldr/arch/amd64/fathelp.S
Modified: branches/ros-amd64-bringup/reactos/boot/freeldr/freeldr/arch/amd64/fathelp.S
URL:
http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/boot/…
==============================================================================
--- branches/ros-amd64-bringup/reactos/boot/freeldr/freeldr/arch/amd64/fathelp.S
[iso-8859-1] (original)
+++ branches/ros-amd64-bringup/reactos/boot/freeldr/freeldr/arch/amd64/fathelp.S
[iso-8859-1] Mon Oct 26 13:07:33 2009
@@ -155,7 +155,7 @@
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 @@
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