aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcov.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/gcov.c')
-rw-r--r--gcc/gcov.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/gcov.c b/gcc/gcov.c
index 34f53ac..8c10f69 100644
--- a/gcc/gcov.c
+++ b/gcc/gcov.c
@@ -2912,7 +2912,6 @@ read_line (FILE *file)
static char *string;
static size_t string_len;
size_t pos = 0;
- char *ptr;
if (!string_len)
{
@@ -2920,7 +2919,7 @@ read_line (FILE *file)
string = XNEWVEC (char, string_len);
}
- while ((ptr = fgets (string + pos, string_len - pos, file)))
+ while (fgets (string + pos, string_len - pos, file))
{
size_t len = strlen (string + pos);