fix return statement of si_copy_stream

This commit is contained in:
Marius Gerbershagen 2019-01-20 15:57:47 +01:00
parent 2b92a7acd9
commit 0ad38e2a3d

View file

@ -5082,7 +5082,7 @@ si_copy_stream(cl_object in, cl_object out, cl_object wait)
}
}
ecl_force_output(out);
@(return c==EOF);
@(return ((c==EOF) ? ECL_T : ECL_NIL));
}