Suppress compiler warning in MULTIBYTE case.

This commit is contained in:
Tom Lane 2001-01-19 06:54:57 +00:00
parent c78e19544e
commit bdb72d8765
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.129 2001/01/14 05:08:15 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.130 2001/01/19 06:54:57 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -1161,7 +1161,6 @@ CopyAttributeOut(FILE *fp, char *server_string, char *delim)
char *string_start;
int mblen;
int i;
#endif
#ifdef MULTIBYTE
@ -1174,6 +1173,7 @@ CopyAttributeOut(FILE *fp, char *server_string, char *delim)
else
{
string = server_string;
string_start = NULL; /* unused, but keep compiler quiet */
}
#else
string = server_string;