diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-04-24 22:17:04 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-04-24 22:17:04 +0000 |
commit | 7384e95b0c013be325888d8954f9edea6ded6c4a (patch) | |
tree | d9039f57fe19376839e0225c6fdccb8317eada19 /src | |
parent | 88fc9413558ad13a85804f077e6e0b62c71dd13f (diff) | |
download | postgresql-7384e95b0c013be325888d8954f9edea6ded6c4a.tar.gz postgresql-7384e95b0c013be325888d8954f9edea6ded6c4a.zip |
Add one more paren to macro.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/access/heapam.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/access/heapam.h b/src/include/access/heapam.h index fdcdda77097..74de1f7724c 100644 --- a/src/include/access/heapam.h +++ b/src/include/access/heapam.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/access/heapam.h,v 1.108 2006/04/24 22:06:32 momjian Exp $ + * $PostgreSQL: pgsql/src/include/access/heapam.h,v 1.109 2006/04/24 22:17:04 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -100,7 +100,7 @@ extern Datum fastgetattr(HeapTuple tup, int attnum, TupleDesc tupleDesc, ( \ ((attnum) > (int) (tup)->t_data->t_natts) ? \ ( \ - ((isnull) != NULL) ? (*(isnull) = true) : (dummyret)NULL), \ + (((isnull) != NULL) ? (*(isnull) = true) : (dummyret)NULL), \ (Datum)NULL \ ) \ : \ |