From 8bcda881653e0d3b73151e43cb56f27520b5c4ca Mon Sep 17 00:00:00 2001 From: Juan Jose Garcia Ripoll Date: Wed, 15 Aug 2012 20:11:03 +0200 Subject: [PATCH] Fixed typo in hash.d --- 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 43c006f06..35853b3e1 100644 --- a/src/c/hash.d +++ b/src/c/hash.d @@ -46,7 +46,7 @@ _hash_eql(cl_hashkey h, cl_object x) h = _hash_eql(h, x->ratio.num); return _hash_eql(h, x->ratio.den); case t_singlefloat: - return hash_string(h, (unsigned char*)&ecl_single_float(x), sizeof(ecl_signle_float(x))); + return hash_string(h, (unsigned char*)&ecl_single_float(x), sizeof(ecl_single_float(x))); case t_doublefloat: return hash_string(h, (unsigned char*)&ecl_double_float(x), sizeof(ecl_double_float(x))); #ifdef ECL_LONG_FLOAT