From: Bruce Momjian <bruce@momjian.us>
Date: Mon, 24 Apr 2006 22:17:04 +0000 (+0000)
Subject: Add one more paren to macro.
X-Git-Tag: REL8_2_BETA1~1106
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7384e95b0c013be325888d8954f9edea6ded6c4a;p=postgresql

Add one more paren to macro.
---

diff --git a/src/include/access/heapam.h b/src/include/access/heapam.h
index fdcdda7709..74de1f7724 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 \
 			) \
 			: \