aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcov.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/gcov.c')
-rw-r--r--gcc/gcov.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/gcov.c b/gcc/gcov.c
index f1067b4..06880c1 100644
--- a/gcc/gcov.c
+++ b/gcc/gcov.c
@@ -1669,7 +1669,10 @@ read_count_file (function_t *fns)
gcov_sync (base, length);
if ((error = gcov_is_error ()))
{
- fnotice (stderr, error < 0 ? "%s:overflowed\n" : "%s:corrupted\n",
+ fnotice (stderr,
+ error < 0
+ ? N_("%s:overflowed\n")
+ : N_("%s:corrupted\n"),
da_file_name);
goto cleanup;
}