diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-03-22 04:01:46 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-03-22 04:01:46 +0000 |
commit | 9e1552607a9dc6bc23e43d46770a9063ade4f3f0 (patch) | |
tree | 6a230d81917ebc004e40cd46c48f2aa27eec153e /src/include/access/xlogdefs.h | |
parent | 6cf8707b828b14b5c2336076ce358b18b67829d6 (diff) | |
download | postgresql-9e1552607a9dc6bc23e43d46770a9063ade4f3f0.tar.gz postgresql-9e1552607a9dc6bc23e43d46770a9063ade4f3f0.zip |
pgindent run. Make it all clean.
Diffstat (limited to 'src/include/access/xlogdefs.h')
-rw-r--r-- | src/include/access/xlogdefs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/access/xlogdefs.h b/src/include/access/xlogdefs.h index bc7f9e1a36d..d6af5eb4989 100644 --- a/src/include/access/xlogdefs.h +++ b/src/include/access/xlogdefs.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: xlogdefs.h,v 1.2 2001/03/13 01:17:06 tgl Exp $ + * $Id: xlogdefs.h,v 1.3 2001/03/22 04:00:32 momjian Exp $ */ #ifndef XLOG_DEFS_H #define XLOG_DEFS_H @@ -23,8 +23,8 @@ * NOTE: the "log file number" is somewhat misnamed, since the actual files * making up the XLOG are much smaller than 4Gb. Each actual file is an * XLogSegSize-byte "segment" of a logical log file having the indicated - * xlogid. The log file number and segment number together identify a - * physical XLOG file. Segment number and offset within the physical file + * xlogid. The log file number and segment number together identify a + * physical XLOG file. Segment number and offset within the physical file * are computed from xrecoff div and mod XLogSegSize. */ typedef struct XLogRecPtr @@ -54,6 +54,6 @@ typedef struct XLogRecPtr * StartUpID (SUI) - system startups counter. It's to allow removing * pg_log after shutdown, in future. */ -typedef uint32 StartUpID; +typedef uint32 StartUpID; #endif /* XLOG_DEFS_H */ |