diff --git a/reactos/boot/freeldr/freeldr/arch/i386/hardware.c b/reactos/boot/freeldr/freeldr/arch/i386/hardware.c index 2124ecc99a5..ff3d33d52f3 100644 --- a/reactos/boot/freeldr/freeldr/arch/i386/hardware.c +++ b/reactos/boot/freeldr/freeldr/arch/i386/hardware.c @@ -130,7 +130,7 @@ extern char reactos_arc_strings[32][256]; static VOID __StallExecutionProcessor(ULONG Loops) { - register unsigned int i; + volatile register unsigned int i; for (i = 0; i < Loops; i++); }