From fc54f4fe68a1768ef58f7f47ce146999c39da685 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Sun, 31 Oct 1999 23:14:51 +0100 Subject: [PATCH] Fixed typo in EXTRACT_{FLOAT,DOUBLE} macros. Rev: src/opcodes.c:1.60 --- src/opcodes.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/opcodes.c b/src/opcodes.c index 6ce575209f..cd4507595a 100644 --- a/src/opcodes.c +++ b/src/opcodes.c @@ -25,7 +25,7 @@ #include "security.h" #include "bignum.h" -RCSID("$Id: opcodes.c,v 1.59 1999/10/31 22:12:54 grubba Exp $"); +RCSID("$Id: opcodes.c,v 1.60 1999/10/31 22:14:51 grubba Exp $"); void index_no_free(struct svalue *to,struct svalue *what,struct svalue *ind) { @@ -804,7 +804,7 @@ static INLINE float low_parse_IEEE_float(char *b, int sz) #else #define EXTRACT_FLOAT(SVAL, INPUT, SHIFT) \ /* FIXME! */ \ - (SVAL).u.float_number = low_parse_IEEE_float((INPUT), 4); + (SVAL).u.float_number = low_parse_IEEE_float((INPUT), 4) #endif #endif @@ -840,7 +840,7 @@ static INLINE float low_parse_IEEE_float(char *b, int sz) #else #define EXTRACT_DOUBLE(SVAL, INPUT, SHIFT) \ /* FIXME! */ \ - (SVAL).u.float_number = low_parse_IEEE_float((INPUT), 8); + (SVAL).u.float_number = low_parse_IEEE_float((INPUT), 8) #endif #endif -- GitLab