Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit db42533

Browse files
committed
cleanup
1 parent 5d34abc commit db42533

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/access/common/heaptuple.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.49 1999/02/13 23:14:10 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.50 1999/03/14 20:17:20 momjian Exp $
1212
*
1313
* NOTES
1414
* The old interface functions have been converted to macros
@@ -689,7 +689,7 @@ heap_formtuple(TupleDesc tupleDescriptor,
689689
len += ComputeDataSize(tupleDescriptor, value, nulls);
690690

691691
tuple = (HeapTuple) palloc(HEAPTUPLESIZE + len);
692-
td = tuple->t_data = (HeapTupleHeader) ((char *) tuple + HEAPTUPLESIZE);;
692+
td = tuple->t_data = (HeapTupleHeader) ((char *) tuple + HEAPTUPLESIZE);
693693

694694
MemSet((char *) td, 0, (int) len);
695695

0 commit comments

Comments
 (0)