|
11 | 11 | * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group |
12 | 12 | * Portions Copyright (c) 1994, Regents of the University of California |
13 | 13 | * |
14 | | - * $PostgreSQL: pgsql/src/include/fmgr.h,v 1.53 2007/09/21 22:52:52 tgl Exp $ |
| 14 | + * $PostgreSQL: pgsql/src/include/fmgr.h,v 1.54 2007/09/22 04:41:19 tgl Exp $ |
15 | 15 | * |
16 | 16 | *------------------------------------------------------------------------- |
17 | 17 | */ |
@@ -179,7 +179,7 @@ extern struct varlena *pg_detoast_datum_packed(struct varlena * datum); |
179 | 179 | pg_detoast_datum_copy((struct varlena *) DatumGetPointer(datum)) |
180 | 180 | #definePG_DETOAST_DATUM_SLICE(datum,f,c) \ |
181 | 181 | pg_detoast_datum_slice((struct varlena *) DatumGetPointer(datum), \ |
182 | | -(int32)f, (int32)c) |
| 182 | +(int32)(f), (int32)(c)) |
183 | 183 | /* WARNING -- unaligned pointer */ |
184 | 184 | #definePG_DETOAST_DATUM_PACKED(datum) \ |
185 | 185 | pg_detoast_datum_packed((struct varlena *) DatumGetPointer(datum)) |
|