summaryrefslogtreecommitdiff
path: root/src/interfaces/libpq/pqexpbuffer.c
diff options
context:
space:
mode:
authorAmit Kapila <akapila@postgresql.org>2019-05-26 18:28:18 +0530
committerAmit Kapila <akapila@postgresql.org>2019-05-26 18:28:18 +0530
commit9679345f3c5ec071f63db358581e28f06c8744a7 (patch)
tree12365b3337578d66f41a58d0e2c2966d9eb3acac /src/interfaces/libpq/pqexpbuffer.c
parent41205719d34969018f708baa70d9d06dae0c0d08 (diff)
downloadpostgresql-9679345f3c5ec071f63db358581e28f06c8744a7.tar.gz
Fix typos.
Reported-by: Alexander Lakhin Author: Alexander Lakhin Reviewed-by: Amit Kapila and Tom Lane Discussion: https://postgr.es/m/7208de98-add8-8537-91c0-f8b089e2928c@gmail.com
Diffstat (limited to 'src/interfaces/libpq/pqexpbuffer.c')
-rw-r--r--src/interfaces/libpq/pqexpbuffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/libpq/pqexpbuffer.c b/src/interfaces/libpq/pqexpbuffer.c
index b3c53b0cda..a9af6f8d83 100644
--- a/src/interfaces/libpq/pqexpbuffer.c
+++ b/src/interfaces/libpq/pqexpbuffer.c
@@ -37,7 +37,7 @@
/* All "broken" PQExpBuffers point to this string. */
static const char oom_buffer[1] = "";
-/* Need a char * for unconstify() compatiblity */
+/* Need a char * for unconstify() compatibility */
static const char *oom_buffer_ptr = oom_buffer;
static bool appendPQExpBufferVA(PQExpBuffer str, const char *fmt, va_list args) pg_attribute_printf(2, 0);