(s_endgif): Change length mismatched errors to warnings.

This commit is contained in:
Doug Evans
1998-02-24 21:39:58 +00:00
parent 88b38f0c3c
commit ef9448db9a

View File

@ -2108,7 +2108,7 @@ s_endgif (ignore)
if (count < 0 if (count < 0
|| fixup_count != 0) || fixup_count != 0)
{ {
as_bad ("bad data count"); as_warn ("bad data count");
return; return;
} }
@ -2130,7 +2130,7 @@ s_endgif (ignore)
} }
if (! ok_p) if (! ok_p)
{ {
as_bad ("nloop value does not match size of data"); as_warn ("nloop value does not match size of data");
return; return;
} }
} }