diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-08-05 14:36:43 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-08-05 14:36:43 +0000 |
commit | 848c30a50199c69995b08e336ed56cc6e877e2b0 (patch) | |
tree | bff0c10fab9efe29374cbb2b8670754662c519eb /src | |
parent | 33f5bf97009811d7f6b5408e37c6ad68110985b0 (diff) | |
download | postgresql-848c30a50199c69995b08e336ed56cc6e877e2b0.tar.gz postgresql-848c30a50199c69995b08e336ed56cc6e877e2b0.zip |
Fix misspelled macro name. Doesn't appear to be used anywhere yet,
so no one noticed.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/mb/pg_wchar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/mb/pg_wchar.h b/src/include/mb/pg_wchar.h index 32e9d739a80..7a6e0d0f0de 100644 --- a/src/include/mb/pg_wchar.h +++ b/src/include/mb/pg_wchar.h @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/src/include/mb/pg_wchar.h,v 1.59 2005/06/15 00:15:08 momjian Exp $ */ +/* $PostgreSQL: pgsql/src/include/mb/pg_wchar.h,v 1.60 2005/08/05 14:36:43 tgl Exp $ */ #ifndef PG_WCHAR_H #define PG_WCHAR_H @@ -200,7 +200,7 @@ typedef enum pg_enc #define PG_VALID_BE_ENCODING(_enc) \ ((_enc) >= 0 && (_enc) <= PG_ENCODING_BE_LAST) -#define PG_ENCODING_IS_CLIEN_ONLY(_enc) \ +#define PG_ENCODING_IS_CLIENT_ONLY(_enc) \ (((_enc) > PG_ENCODING_BE_LAST && (_enc) <= PG_ENCODING_FE_LAST) #define PG_VALID_ENCODING(_enc) \ |