diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-03-15 18:06:11 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-03-15 18:06:11 -0400 |
commit | 3aff33aa687e47d52f453892498b30ac98a296af (patch) | |
tree | 61560211d409fd97c6ee8e718fe01c9f5db717c6 /src/bin/pg_dump/compress_io.c | |
parent | fd658dbb300456b393536802d1145a9cea7b25d6 (diff) | |
download | postgresql-3aff33aa687e47d52f453892498b30ac98a296af.tar.gz postgresql-3aff33aa687e47d52f453892498b30ac98a296af.zip |
Fix typos.
Oskari Saarenmaa
Diffstat (limited to 'src/bin/pg_dump/compress_io.c')
-rw-r--r-- | src/bin/pg_dump/compress_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/compress_io.c b/src/bin/pg_dump/compress_io.c index a01b03aba36..4cf0935663e 100644 --- a/src/bin/pg_dump/compress_io.c +++ b/src/bin/pg_dump/compress_io.c @@ -296,7 +296,7 @@ DeflateCompressorZlib(ArchiveHandle *AH, CompressorState *cs, bool flush) if (zp->avail_out < cs->zlibOutSize) { /* - * Any write function shoud do its own error checking but to + * Any write function should do its own error checking but to * make sure we do a check here as well... */ size_t len = cs->zlibOutSize - zp->avail_out; |