From 1d03e4d50e4ab5fb4ca1e89e80cb6a9ef71c6dbc Mon Sep 17 00:00:00 2001 From: Juan Jose Garcia Ripoll Date: Mon, 24 Jan 2011 22:12:31 +0100 Subject: [PATCH] Fixed typo in hash.d (J. James) --- src/c/hash.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c/hash.d b/src/c/hash.d index 9e44d7371..02a25d730 100644 --- a/src/c/hash.d +++ b/src/c/hash.d @@ -140,7 +140,7 @@ _hash_equal(int depth, cl_hashkey h, cl_object x) /* We coerce to double because long double has extra bits * that give rise to different hash key and are not * meaningful */ - struct { double mantissa; int exponent; int sign} aux; + struct { double mantissa; int exponent; int sign; } aux; aux.mantissa = frexpl(ecl_long_float(x), &aux.exponent); aux.sign = (ecl_long_float(x) < 0)? -1: 1; if (aux.mantissa == 0.0) aux.mantissa = 0.0;