From b4564a98fa6ba4c93f3d1fe49909eb170650a888 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 27 Jan 1998 15:35:30 +0000 Subject: Deadlock ceallnup. (void) change for aix and hp compilers. protocol cleanup. --- src/include/access/heapam.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/include/access/heapam.h') diff --git a/src/include/access/heapam.h b/src/include/access/heapam.h index cb9765c6d5a..3e6e8687805 100644 --- a/src/include/access/heapam.h +++ b/src/include/access/heapam.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: heapam.h,v 1.24 1998/01/25 05:04:21 scrappy Exp $ + * $Id: heapam.h,v 1.25 1998/01/27 15:35:18 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -101,10 +101,10 @@ typedef HeapAccessStatisticsData *HeapAccessStatistics; #define heap_getattr(tup, b, attnum, tupleDesc, isnull) \ (AssertMacro((tup) != NULL) ? \ ((attnum) > (int) (tup)->t_natts) ? \ - (((isnull) ? (*(isnull) = true) : (void)NULL), (Datum)NULL) : \ + (((isnull) ? (*(isnull) = true) : dummyretNULL), (Datum)NULL) : \ ((attnum) > 0) ? \ fastgetattr((tup), (attnum), (tupleDesc), (isnull)) : \ - (((isnull) ? (*(isnull) = false) : (void)NULL), heap_getsysattr((tup), (b), (attnum))) : \ + (((isnull) ? (*(isnull) = false) : dummyretNULL), heap_getsysattr((tup), (b), (attnum))) : \ (Datum)NULL) extern HeapAccessStatistics heap_access_stats; /* in stats.c */ -- cgit v1.2.3