diff options
author | Peter Eisentraut | 2016-04-26 16:04:43 +0000 |
---|---|---|
committer | Peter Eisentraut | 2016-04-27 01:37:06 +0000 |
commit | 3019f432d6fffe6d8e04f5ccc592eb385af96492 (patch) | |
tree | e19865edb85d5c6103c5507e25ff153360628f26 /src | |
parent | 8067c8f86b5f4516ee204a119a750329f7d126ee (diff) |
pg_dump: Message style improvements
forgotten in b6dacc173b6830c515d970698cead9a85663c553
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_dump/pg_dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 593df572459..d3f515716d7 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++) { |