From f4ce8b566413d5f7e6d4c82df06d82cd040facf9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=A9=20van=20Geldorp?= Date: Sun, 8 May 2005 15:40:25 +0000 Subject: [PATCH] Fix for nasm 0.98 svn path=/trunk/; revision=15124 --- reactos/lib/pseh/i386/framebased.asm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/lib/pseh/i386/framebased.asm b/reactos/lib/pseh/i386/framebased.asm index 635e374be6a..34360be3a87 100644 --- a/reactos/lib/pseh/i386/framebased.asm +++ b/reactos/lib/pseh/i386/framebased.asm @@ -56,9 +56,9 @@ __SEHGlobalUnwind: push esi push edi - push 0x0 ; ReturnValue - push 0x0 ; ExceptionRecord - push .RestoreRegisters ; TargetIp + push dword 0x0 ; ReturnValue + push dword 0x0 ; ExceptionRecord + push dword .RestoreRegisters ; TargetIp push ebx ; TargetFrame call [__SEHRtlUnwind] -- 2.17.1