diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-08-12 22:55:25 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-08-12 22:55:25 +0000 |
commit | ea5b5357cdc79c7742c035032f5500e4a97a6d55 (patch) | |
tree | 1b2b64495c4aef58a7923da18525a49836ab5b03 /src/backend/commands/async.c | |
parent | 0f6a961e299b1dc3c57bf34d714d2eb0d9b5e6eb (diff) | |
download | postgresql-ea5b5357cdc79c7742c035032f5500e4a97a6d55.tar.gz postgresql-ea5b5357cdc79c7742c035032f5500e4a97a6d55.zip |
Remove more (void) and fix -Wall warnings.
Diffstat (limited to 'src/backend/commands/async.c')
-rw-r--r-- | src/backend/commands/async.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/commands/async.c b/src/backend/commands/async.c index 7d24261c644..45a225fafb6 100644 --- a/src/backend/commands/async.c +++ b/src/backend/commands/async.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.15 1997/08/12 20:15:08 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.16 1997/08/12 22:52:15 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -210,7 +210,7 @@ Async_Notify(char *relname) tdesc, &isnull); if (!DatumGetInt32(d)) { rTuple = heap_modifytuple(lTuple, b, lRel, value, nulls, repl); - (void) heap_replace(lRel, &lTuple->t_ctid, rTuple); + heap_replace(lRel, &lTuple->t_ctid, rTuple); } ReleaseBuffer(b); } @@ -575,7 +575,7 @@ Async_NotifyFrontEnd() d = (Datum) heap_getattr(lTuple, b, Anum_pg_listener_relname, tdesc, &isnull); rTuple = heap_modifytuple(lTuple, b, lRel, value, nulls, repl); - (void) heap_replace(lRel, &lTuple->t_ctid, rTuple); + heap_replace(lRel, &lTuple->t_ctid, rTuple); /* notifying the front end */ |