From 7eb2d3bdca704aca4295a9646c27aa09d290245c Mon Sep 17 00:00:00 2001 From: Arto Bendiken Date: Mon, 22 Sep 2014 21:25:48 +0000 Subject: [PATCH] Suppressed a spurious -Wsometimes-uninitialized build warning. See: https://sourceforge.net/p/ecls/bugs/293/ --- src/h/number.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/h/number.h b/src/h/number.h index 3eed78980..d472bb147 100644 --- a/src/h/number.h +++ b/src/h/number.h @@ -84,7 +84,7 @@ ecl_to_fix(cl_object f) static ECL_INLINE cl_index ecl_to_size(cl_object f) { - cl_fixnum aux; + cl_fixnum aux = 0; if (ecl_unlikely(!ECL_FIXNUMP(f) || ((aux = ecl_fixnum(f)) < 0))) FEtype_error_size(f); return aux;