diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-07-04 05:47:06 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-07-04 05:47:06 +0000 |
commit | 137eacbe6a7c923b5373660780c5d56e2eb2aa93 (patch) | |
tree | bee2012159ed528b5d48a8f8c75a818766e99ac0 /src | |
parent | a0b4af3c85b59854d6fe8ae465a019adf44a0157 (diff) | |
download | postgresql-137eacbe6a7c923b5373660780c5d56e2eb2aa93.tar.gz postgresql-137eacbe6a7c923b5373660780c5d56e2eb2aa93.zip |
Align cleanup.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/access/htup.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/access/htup.h b/src/include/access/htup.h index 3097a9d914a..b884034be7a 100644 --- a/src/include/access/htup.h +++ b/src/include/access/htup.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: htup.h,v 1.20 1999/07/04 05:44:56 momjian Exp $ + * $Id: htup.h,v 1.21 1999/07/04 05:47:06 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -53,7 +53,7 @@ typedef struct HeapTupleHeaderData typedef HeapTupleHeaderData *HeapTupleHeader; -#define MinTupleSize (MAXALIGN(sizeof (PageHeaderData) + \ +#define MinTupleSize (MAXALIGN(sizeof (PageHeaderData)) + \ MAXALIGN(sizeof(HeapTupleHeaderData)) + \ MAXALIGN(sizeof(char))) |