Missing break statement, caused IMAGPART to return NUL on long doubles

This commit is contained in:
Juan Jose Garcia Ripoll 2008-07-25 16:57:11 +02:00
parent 46e3ea483e
commit 84a8e1fc80

View file

@ -1338,6 +1338,7 @@ cl_imagpart(cl_object x)
#ifdef ECL_LONG_FLOAT
case t_longfloat:
x = cl_core.longfloat_zero;
break;
#endif
case t_complex:
x = x->complex.imag;