Add cast to quiet compiler warning.

This commit is contained in:
Bryan Henderson 1996-12-23 08:39:27 +00:00
parent 4540a8bd5c
commit d6c06feb18
1 changed files with 1 additions and 1 deletions

View File

@ -256,7 +256,7 @@ ExecAgg(Agg *node)
for(i = 0; i < nagg; i++) {
AttrNumber attnum;
int2 attlen;
Datum newVal = NULL;
Datum newVal = (Datum) NULL;
AggFuncInfo *aggfns = &aggFuncInfo[i];
Datum args[2];
Node *tagnode = NULL;