Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 848c30a

Browse files
committed
Fix misspelled macro name. Doesn't appear to be used anywhere yet,
so no one noticed.
1 parent 33f5bf9 commit 848c30a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/include/mb/pg_wchar.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $PostgreSQL: pgsql/src/include/mb/pg_wchar.h,v 1.59 2005/06/15 00:15:08 momjian Exp $ */
1+
/* $PostgreSQL: pgsql/src/include/mb/pg_wchar.h,v 1.60 2005/08/05 14:36:43 tgl Exp $ */
22

33
#ifndef PG_WCHAR_H
44
#define PG_WCHAR_H
@@ -200,7 +200,7 @@ typedef enum pg_enc
200200
#define PG_VALID_BE_ENCODING(_enc) \
201201
((_enc) >= 0 && (_enc) <= PG_ENCODING_BE_LAST)
202202

203-
#define PG_ENCODING_IS_CLIEN_ONLY(_enc) \
203+
#define PG_ENCODING_IS_CLIENT_ONLY(_enc) \
204204
(((_enc) > PG_ENCODING_BE_LAST && (_enc) <= PG_ENCODING_FE_LAST)
205205

206206
#define PG_VALID_ENCODING(_enc) \

0 commit comments

Comments
 (0)