diff options
author | Peter Eisentraut | 2017-07-31 21:22:47 +0000 |
---|---|---|
committer | Peter Eisentraut | 2017-07-31 21:22:47 +0000 |
commit | 0b02e3f1289e0454d313e6add45f43a287ebaf8b (patch) | |
tree | 43a51dc38106dba323e33c6d2cfc6bc768af6797 | |
parent | f40254a799f7057a415917dacb5ba7eab5b17a99 (diff) |
Fix typo
Author: Masahiko Sawada <[email protected]>
-rw-r--r-- | src/bin/pg_upgrade/info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_upgrade/info.c b/src/bin/pg_upgrade/info.c index f7c278b306..0b14998f4b 100644 --- a/src/bin/pg_upgrade/info.c +++ b/src/bin/pg_upgrade/info.c @@ -210,7 +210,7 @@ create_rel_filename_map(const char *old_data, const char *new_data, /* new_relfilenode will match old and new pg_class.oid */ map->new_relfilenode = new_rel->relfilenode; - /* used only for logging and error reporing, old/new are identical */ + /* used only for logging and error reporting, old/new are identical */ map->nspname = old_rel->nspname; map->relname = old_rel->relname; } |