Remove more progname references in vacuumdb.c

Oversight in 5f384037.

Author: Álvaro Herrera
Discussion: https://postgr.es/m/20190722151806.GA22634@alvherre.pgsql
This commit is contained in:
Michael Paquier 2019-07-23 14:29:34 +09:00
parent a0555ddab9
commit 3cae75f420
1 changed files with 3 additions and 3 deletions

View File

@ -57,7 +57,7 @@ static void prepare_vacuum_command(PQExpBuffer sql, int serverVersion,
vacuumingOptions *vacopts, const char *table);
static void run_vacuum_command(PGconn *conn, const char *sql, bool echo,
const char *table, const char *progname);
const char *table);
static void help(const char *progname);
@ -646,7 +646,7 @@ vacuum_one_database(const char *dbname, vacuumingOptions *vacopts,
* through ParallelSlotsGetIdle.
*/
run_vacuum_command(free_slot->connection, sql.data,
echo, tabname, progname);
echo, tabname);
cell = cell->next;
} while (cell != NULL);
@ -855,7 +855,7 @@ prepare_vacuum_command(PQExpBuffer sql, int serverVersion,
*/
static void
run_vacuum_command(PGconn *conn, const char *sql, bool echo,
const char *table, const char *progname)
const char *table)
{
bool status;