diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-01-19 06:57:25 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-01-19 06:57:25 +0000 |
commit | 86a2c2595bc22d04ff790d4225dc624c8252310e (patch) | |
tree | 8fd5c46e7a848789d00bab59afdf3bc7959dcec5 /src/backend/utils/init/postinit.c | |
parent | bdb72d87658e128148ec91daebd64e3775ae182f (diff) | |
download | postgresql-86a2c2595bc22d04ff790d4225dc624c8252310e.tar.gz postgresql-86a2c2595bc22d04ff790d4225dc624c8252310e.zip |
Suppress compiler warning in MULTIBYTE code.
Diffstat (limited to 'src/backend/utils/init/postinit.c')
-rw-r--r-- | src/backend/utils/init/postinit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/utils/init/postinit.c b/src/backend/utils/init/postinit.c index 1d307ea2186..9694990e8e6 100644 --- a/src/backend/utils/init/postinit.c +++ b/src/backend/utils/init/postinit.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.78 2001/01/14 22:21:54 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.79 2001/01/19 06:57:25 tgl Exp $ * * *------------------------------------------------------------------------- @@ -29,6 +29,7 @@ #include "catalog/catname.h" #include "catalog/pg_database.h" #include "commands/trigger.h" +#include "commands/variable.h" /* for set_default_client_encoding() */ #include "miscadmin.h" #include "storage/backendid.h" #include "storage/proc.h" |