From 3019f432d6fffe6d8e04f5ccc592eb385af96492 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Tue, 26 Apr 2016 12:04:43 -0400 Subject: [PATCH] pg_dump: Message style improvements forgotten in b6dacc173b6830c515d970698cead9a85663c553 --- src/bin/pg_dump/pg_dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 593df57245..d3f515716d 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -1243,7 +1243,7 @@ expand_table_name_patterns(Archive *fout, res = ExecuteSqlQuery(fout, query->data, PGRES_TUPLES_OK); if (strict_names && PQntuples(res) == 0) - exit_horribly(NULL, "No matching table(s) were found for pattern \"%s\"\n", cell->val); + exit_horribly(NULL, "no matching tables were found for pattern \"%s\"\n", cell->val); for (i = 0; i < PQntuples(res); i++) { -- 2.40.0