From 1c7c9c60cf4161b8cc919a7291896d842aef049f Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 14 Apr 1988 18:06:47 +0000 Subject: [PATCH] fef4 and fef8 did not quite work properly: the exponent part is an int, not a short! --- mach/proto/fp/fef4.c | 2 +- mach/proto/fp/fef8.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mach/proto/fp/fef4.c b/mach/proto/fp/fef4.c index 835c8f2fc..449504ca8 100644 --- a/mach/proto/fp/fef4.c +++ b/mach/proto/fp/fef4.c @@ -12,7 +12,7 @@ #include "FP_types.h" struct fef4_returns { - short e; + int e; _float f; }; diff --git a/mach/proto/fp/fef8.c b/mach/proto/fp/fef8.c index ca00b3fe5..bc95ef721 100644 --- a/mach/proto/fp/fef8.c +++ b/mach/proto/fp/fef8.c @@ -12,7 +12,7 @@ #include "FP_types.h" struct fef8_returns { - short e; + int e; _double f; }; -- 2.34.1