1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Fix some portability problems (get it to compile, at least, on HP's cc)

This commit is contained in:
Tom Lane
2001-10-15 18:49:40 +00:00
parent 394925b60d
commit 1e2779117d
2 changed files with 11 additions and 13 deletions

View File

@ -111,7 +111,7 @@ dblink(PG_FUNCTION_ARGS)
results->res = res;
res = NULL;
(dblink_results *) fcinfo->flinfo->fn_extra = results;
fcinfo->flinfo->fn_extra = (void *) results;
results = NULL;
results = fcinfo->flinfo->fn_extra;