diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-01-23 14:57:29 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-01-23 14:57:29 +0900 |
commit | 1699e6dd1fa7fbc7c3d114b121828eb27eb523b1 (patch) | |
tree | baed6a2bb9bb1a4178eed680bbb6f46de22e3813 /src | |
parent | 78855e798325f64e36e2775031137ea83ad0c3ef (diff) | |
download | postgresql-1699e6dd1fa7fbc7c3d114b121828eb27eb523b1.tar.gz postgresql-1699e6dd1fa7fbc7c3d114b121828eb27eb523b1.zip |
Fix typo in pgbench.c
Author: Moon, Insung
Discussion: https://postgr.es/m/008001d4b2db$1f772170$5e656450$@lab.ntt.co.jp
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pgbench/pgbench.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pgbench/pgbench.c b/src/bin/pgbench/pgbench.c index b5c75ce1c68..489912ff0c8 100644 --- a/src/bin/pgbench/pgbench.c +++ b/src/bin/pgbench/pgbench.c @@ -4754,8 +4754,8 @@ ParseScript(const char *script, const char *desc, int weight) /* * Since we used a command slot, allocate more if needed. Note we - * always allocate one more in order to accomodate the NULL terminator - * below. + * always allocate one more in order to accommodate the NULL + * terminator below. */ if (index >= alloc_num) { |