diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2022-03-09 12:12:20 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2022-03-09 12:12:20 +0100 |
commit | 2cfde3c2371860aa6c05f84c3fbec9c400ab6b1a (patch) | |
tree | 097e6f225dfdf009a380caf293d11c805a4e7aa6 /src | |
parent | df4c3cbd8f4f619785c735669150e3a1df9cf7ca (diff) | |
download | postgresql-2cfde3c2371860aa6c05f84c3fbec9c400ab6b1a.tar.gz postgresql-2cfde3c2371860aa6c05f84c3fbec9c400ab6b1a.zip |
Fix double declaration for check_ok() in pg_upgrade.h
Author: Pavel Borisov <pashkin.elfe@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_upgrade/pg_upgrade.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bin/pg_upgrade/pg_upgrade.h b/src/bin/pg_upgrade/pg_upgrade.h index ca86c112924..b9b3ac81b2c 100644 --- a/src/bin/pg_upgrade/pg_upgrade.h +++ b/src/bin/pg_upgrade/pg_upgrade.h @@ -429,7 +429,6 @@ void pg_fatal(const char *fmt,...) pg_attribute_printf(1, 2) pg_attribute_noret void end_progress_output(void); void prep_status(const char *fmt,...) pg_attribute_printf(1, 2); void prep_status_progress(const char *fmt,...) pg_attribute_printf(1, 2); -void check_ok(void); unsigned int str2uint(const char *str); |