diff options
author | David Rowley <drowley@postgresql.org> | 2022-10-06 10:19:36 +1300 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2022-10-06 10:19:36 +1300 |
commit | d8df67bb1ad9cb80963f3592be281656857a5efc (patch) | |
tree | 20f00201ffb25a6e65a8930ad6ed868a30112ed7 | |
parent | 112f0225dbfe8af217294bfa0bd227f3302a1658 (diff) | |
download | postgresql-d8df67bb1ad9cb80963f3592be281656857a5efc.tar.gz postgresql-d8df67bb1ad9cb80963f3592be281656857a5efc.zip |
Fix final compiler warning produced by -Wshadow=compatible-local
We're now able to compile the entire tree with -Wshadow=compatible-local
without any compiler warnings.
Author: David Rowley
Discussion: https://postgr.es/m/CAApHDvqWGMdB_pATeUqE=JCtNqNxObPOJ00jFEa2_sZ20j_Wvg@mail.gmail.com
-rw-r--r-- | src/bin/pgbench/pgbench.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/pgbench/pgbench.c b/src/bin/pgbench/pgbench.c index aa1a3541fe6..33f2836e357 100644 --- a/src/bin/pgbench/pgbench.c +++ b/src/bin/pgbench/pgbench.c @@ -7506,9 +7506,9 @@ threadRun(void *arg) /* progress report is made by thread 0 for all threads */ if (progress && thread->tid == 0) { - pg_time_usec_t now = pg_time_now(); + pg_time_usec_t now2 = pg_time_now(); - if (now >= next_report) + if (now2 >= next_report) { /* * Horrible hack: this relies on the thread pointer we are @@ -7516,7 +7516,7 @@ threadRun(void *arg) * entry of the threads array. That is why this MUST be done * by thread 0 and not any other. */ - printProgressReport(thread, thread_start, now, + printProgressReport(thread, thread_start, now2, &last, &last_report); /* @@ -7526,7 +7526,7 @@ threadRun(void *arg) do { next_report += (int64) 1000000 * progress; - } while (now >= next_report); + } while (now2 >= next_report); } } } |