1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-07 00:36:50 +03:00

offsetof cleanup.

This commit is contained in:
Bruce Momjian
1998-09-04 18:21:11 +00:00
parent f93281a1a1
commit 4b814b1886
2 changed files with 6 additions and 6 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.42 1998/09/04 18:05:38 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.43 1998/09/04 18:21:10 momjian Exp $
*
* NOTES
* The old interface functions have been converted to macros
@ -809,7 +809,7 @@ heap_formtuple(TupleDesc tupleDescriptor,
int i;
int numberOfAttributes = tupleDescriptor->natts;
len = offsetof(HeapTuple->t_bits);
len = offsetof(HeapTupleData, t_bits);
for (i = 0; i < numberOfAttributes && !hasnull; i++)
{
@ -957,7 +957,7 @@ heap_addheader(uint32 natts, /* max domain index */
AssertArg(natts > 0);
len = offsetof(HeapTuple->t_bits);
len = offsetof(HeapTupleData, t_bits);
hoff = len = DOUBLEALIGN(len); /* be conservative */
len += structlen;