In cl_clear_input(), do not complain when fseek() fails.

This commit is contained in:
jjgarcia 2002-12-17 10:53:29 +00:00
parent b0e60245a4
commit c935faf44a

View file

@ -828,8 +828,7 @@ BEGIN:
case smm_input:
if (fp == NULL)
wrong_file_handler(strm);
if (fseek(fp, 0L, 2) != 0)
io_error(strm);
fseek(fp, 0L, 2);
break;
case smm_synonym: