summaryrefslogtreecommitdiff
path: root/src/include/access/xlog.h
diff options
context:
space:
mode:
authorThomas G. Lockhart <lockhart@fourpalms.org>2002-08-05 01:24:16 +0000
committerThomas G. Lockhart <lockhart@fourpalms.org>2002-08-05 01:24:16 +0000
commitac1a3dcf24e182a1cc9a136246b7f18a8a64bbd5 (patch)
tree4e776754602fe672dc5a1d6f87158a7877ee851e /src/include/access/xlog.h
parent0fe931a3e0f259bd2933e48ee09bd3d7435149b4 (diff)
Fix compilation problem with assert checking enabled for recent xlog
location feature.
Diffstat (limited to 'src/include/access/xlog.h')
-rw-r--r--src/include/access/xlog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/access/xlog.h b/src/include/access/xlog.h
index 19ff8dd2ce8..4b661f53d32 100644
--- a/src/include/access/xlog.h
+++ b/src/include/access/xlog.h
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: xlog.h,v 1.32 2002/08/04 06:26:38 thomas Exp $
+ * $Id: xlog.h,v 1.33 2002/08/05 01:24:16 thomas Exp $
*/
#ifndef XLOG_H
#define XLOG_H
@@ -176,7 +176,7 @@ typedef struct XLogRecData
} XLogRecData;
/* XLOG directory name */
-extern char XLogDir[];
+extern char *XLogDir;
extern StartUpID ThisStartUpID; /* current SUI */
extern bool InRecovery;