Suppress unused-variable compiler warning, per Andrew Dunstan.

This commit is contained in:
Tom Lane 2006-07-20 02:15:17 +00:00
parent 27a83103ea
commit c3104376f9
1 changed files with 3 additions and 1 deletions

View File

@ -11,7 +11,7 @@
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $PostgreSQL: pgsql/src/test/regress/pg_regress.c,v 1.7 2006/07/20 02:10:00 tgl Exp $ * $PostgreSQL: pgsql/src/test/regress/pg_regress.c,v 1.8 2006/07/20 02:15:17 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -63,7 +63,9 @@ static char *libdir = LIBDIR;
static char *datadir = PGSHAREDIR; static char *datadir = PGSHAREDIR;
static char *host_platform = HOST_TUPLE; static char *host_platform = HOST_TUPLE;
static char *makeprog = MAKEPROG; static char *makeprog = MAKEPROG;
#ifndef WIN32 /* not used in WIN32 case */
static char *shellprog = SHELLPROG; static char *shellprog = SHELLPROG;
#endif
/* currently we can use the same diff switches on all platforms */ /* currently we can use the same diff switches on all platforms */
static const char *basic_diff_opts = "-w"; static const char *basic_diff_opts = "-w";