Commit 11dc5cc6 by Andreas Jaeger Committed by Andreas Jaeger

* varray.c (varray_check_failed): Fix typo.

From-SVN: r69008
parent 2e1eedd6
2003-07-06 Andreas Jaeger <aj@suse.de> 2003-07-06 Andreas Jaeger <aj@suse.de>
* unroll.c: Likewise. * varray.c (varray_check_failed): Fix typo.
* unroll.c: Convert prototypes to ISO C90.
* varasm.c: Likewise. * varasm.c: Likewise.
* varray.c: Likewise. * varray.c: Likewise.
* varray.h: Likewise. * varray.h: Likewise.
......
...@@ -126,7 +126,7 @@ varray_check_failed (varray_type va, size_t n, const char *file, int line, ...@@ -126,7 +126,7 @@ varray_check_failed (varray_type va, size_t n, const char *file, int line,
{ {
internal_error ("virtual array %s[%lu]: element %lu out of bounds in %s, at %s:%d", 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, va->name, (unsigned long) va->num_elements, (unsigned long) n,
function, trim_filename (file), line; function, trim_filename (file), line);
} }
#endif #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