diff --git a/rtl/darwin/i386/sighnd.inc b/rtl/darwin/i386/sighnd.inc index 0938ced5b4..eed2df6bd6 100644 --- a/rtl/darwin/i386/sighnd.inc +++ b/rtl/darwin/i386/sighnd.inc @@ -30,7 +30,7 @@ begin FPE_FLTRES : Res:=208; {Device not available} FPE_FLTINV : Res:=207; {Invalid floating point operation} Else - Res:=208; {coprocessor error} + Res:=207; {coprocessor error} end; { the following is true on ppc, hopefully not on x86 as well } { FPU exceptions are completely disabled by the kernel if one occurred, it } diff --git a/rtl/darwin/powerpc/sighnd.inc b/rtl/darwin/powerpc/sighnd.inc index 033336df45..02fe1b80ea 100644 --- a/rtl/darwin/powerpc/sighnd.inc +++ b/rtl/darwin/powerpc/sighnd.inc @@ -30,7 +30,7 @@ begin FPE_FLTRES : Res:=208; {Device not available} FPE_FLTINV : Res:=207; {Invalid floating point operation} Else - Res:=208; {coprocessor error} + Res:=207; {coprocessor error} end; { FPU exceptions are completely disabled by the kernel if one occurred, it } { seems this is necessary to be able to return to user mode. They can be }