Commit bdb72d87 authored by Tom Lane's avatar Tom Lane

Suppress compiler warning in MULTIBYTE case.

parent c78e1954
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * 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) ...@@ -1161,7 +1161,6 @@ CopyAttributeOut(FILE *fp, char *server_string, char *delim)
char *string_start; char *string_start;
int mblen; int mblen;
int i; int i;
#endif #endif
#ifdef MULTIBYTE #ifdef MULTIBYTE
...@@ -1174,6 +1173,7 @@ CopyAttributeOut(FILE *fp, char *server_string, char *delim) ...@@ -1174,6 +1173,7 @@ CopyAttributeOut(FILE *fp, char *server_string, char *delim)
else else
{ {
string = server_string; string = server_string;
string_start = NULL; /* unused, but keep compiler quiet */
} }
#else #else
string = server_string; string = server_string;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment