diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2019-08-26 19:04:35 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2019-08-26 19:06:01 +0200 |
commit | f2690338814738967d75cc1e35cc1cfac1a40710 (patch) | |
tree | 0b38c1f38463b4f2a930753cd33918924875f1b0 /src | |
parent | c62b84437f52f0e23924268938916e90b8e5b9e6 (diff) | |
download | postgresql-f2690338814738967d75cc1e35cc1cfac1a40710.tar.gz postgresql-f2690338814738967d75cc1e35cc1cfac1a40710.zip |
Fix gettext triggers specification
In cc8d41511721d25d557fc02a46c053c0a602fed0, the arguments of
warn_or_exit_horribly() were changed but this was not updated.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_dump/nls.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/nls.mk b/src/bin/pg_dump/nls.mk index 8a53ad08ddb..2a6fd597cb1 100644 --- a/src/bin/pg_dump/nls.mk +++ b/src/bin/pg_dump/nls.mk @@ -12,7 +12,7 @@ GETTEXT_FILES = $(FRONTEND_COMMON_GETTEXT_FILES) \ ../../common/wait_error.c GETTEXT_TRIGGERS = $(FRONTEND_COMMON_GETTEXT_TRIGGERS) \ fatal simple_prompt \ - ExecuteSqlCommand:3 warn_or_exit_horribly:3 + ExecuteSqlCommand:3 warn_or_exit_horribly:2 GETTEXT_FLAGS = $(FRONTEND_COMMON_GETTEXT_FLAGS) \ fatal:1:c-format \ warn_or_exit_horribly:2:c-format |