Commit 02aa5f19 authored by Bruce Momjian's avatar Bruce Momjian

Supress compiler warning.

parent eaa088e8
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/common/reloptions.c,v 1.13 2009/01/05 17:14:28 alvherre Exp $ * $PostgreSQL: pgsql/src/backend/access/common/reloptions.c,v 1.14 2009/01/06 02:44:17 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -667,7 +667,7 @@ parse_one_reloption(relopt_value *option, char *text_str, int text_len, ...@@ -667,7 +667,7 @@ parse_one_reloption(relopt_value *option, char *text_str, int text_len,
{ {
char *value; char *value;
int value_len; int value_len;
bool parsed; bool parsed = true; /* quiet compiler */
bool nofree = false; bool nofree = false;
if (option->isset && validate) if (option->isset && validate)
......
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