diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2004-07-08 09:45:19 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2004-07-08 09:45:19 +0000 |
commit | 70ce47b582454762c68f9ef7c63ce147d95eae02 (patch) | |
tree | e010d0160fe1afb20af9b3f83db61767d289f77f /gcc/vec.c | |
parent | 7de5bcccabe7577efb9e734e5534a2318b1f3703 (diff) | |
download | gcc-70ce47b582454762c68f9ef7c63ce147d95eae02.zip gcc-70ce47b582454762c68f9ef7c63ce147d95eae02.tar.gz gcc-70ce47b582454762c68f9ef7c63ce147d95eae02.tar.bz2 |
* vec.c (vec_assert_fail): Remove duplicate 'function'.
From-SVN: r84282
Diffstat (limited to 'gcc/vec.c')
-rw-r--r-- | gcc/vec.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -85,7 +85,6 @@ vec_assert_fail (const char *op, const char *struct_name, const char *file, size_t line, const char *function) { internal_error ("vector %s %s domain error, in %s at %s:%u", - struct_name, op, function, function, - trim_filename (file), line); + struct_name, op, function, trim_filename (file), line); } #endif |