Commit 9d99ca5b by Zack Weinberg Committed by Zack Weinberg

* varray.c (varray_check_failed): Use internal_error.

From-SVN: r43815
parent 39f5fa33
2001-07-06 Zack Weinberg <zackw@stanford.edu>
* varray.c (varray_check_failed): Use internal_error.
2001-07-05 Andrew Haley <aph@redhat.com>
* Makefile.in (LIB2_DIVMOD_FUNCS): New.
......
......@@ -84,9 +84,9 @@ varray_check_failed (va, n, file, line, function)
int line;
const char *function;
{
error("Virtual array %s[%lu]: element %lu out of bounds",
va->name, (unsigned long) va->num_elements, (unsigned long) n);
fancy_abort (file, line, function);
internal_error ("Virtual array %s[%lu]: element %lu out of bounds in %s, at %s:%d",
va->name, (unsigned long) va->num_elements, (unsigned long) n,
function, trim_filename (file), line);
}
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment