diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-06-14 05:24:50 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-06-14 05:24:50 +0000 |
commit | ff7b9f55410bbfbd017af331d23371ab61b63d5e (patch) | |
tree | 6a055be48dd161470503eb2f1a0376bc048ab73b /src/backend/access/gist/gist.c | |
parent | 69cd08d9f79818c8ff8b7b74c7ecfe8dcdb0202c (diff) | |
download | postgresql-ff7b9f55410bbfbd017af331d23371ab61b63d5e.tar.gz postgresql-ff7b9f55410bbfbd017af331d23371ab61b63d5e.zip |
I had overlooked the fact that some fmgr-callable functions return void
--- ie, they're only called for side-effects. Add a PG_RETURN_VOID()
macro and use it where appropriate. This probably doesn't change the
machine code by a single bit ... it's just for documentation.
Diffstat (limited to 'src/backend/access/gist/gist.c')
-rw-r--r-- | src/backend/access/gist/gist.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index 1d8c25104ce..e200942d502 100644 --- a/src/backend/access/gist/gist.c +++ b/src/backend/access/gist/gist.c @@ -6,7 +6,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/gist/gist.c,v 1.56 2000/06/13 07:34:27 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/gist/gist.c,v 1.57 2000/06/14 05:24:35 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -303,7 +303,7 @@ gistbuild(PG_FUNCTION_ARGS) pfree(nulls); pfree(d); - PG_RETURN_POINTER(NULL); /* no real return value */ + PG_RETURN_VOID(); } /* @@ -1149,7 +1149,7 @@ gistdelete(PG_FUNCTION_ARGS) WriteBuffer(buf); - PG_RETURN_POINTER(NULL); /* no real return value */ + PG_RETURN_VOID(); } void |