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/lib | |
parent | 0f6a961e299b1dc3c57bf34d714d2eb0d9b5e6eb (diff) | |
download | postgresql-ea5b5357cdc79c7742c035032f5500e4a97a6d55.tar.gz postgresql-ea5b5357cdc79c7742c035032f5500e4a97a6d55.zip |
Remove more (void) and fix -Wall warnings.
Diffstat (limited to 'src/backend/lib')
-rw-r--r-- | src/backend/lib/hasht.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/lib/hasht.c b/src/backend/lib/hasht.c index fdfd2e37351..baceabfcf7a 100644 --- a/src/backend/lib/hasht.c +++ b/src/backend/lib/hasht.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/lib/Attic/hasht.c,v 1.3 1996/11/06 08:27:13 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/lib/Attic/hasht.c,v 1.4 1997/08/12 22:52:42 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -33,7 +33,7 @@ HashTableWalk(HTAB *hashtable, HashtFunc function, int arg) int keysize; keysize = hashtable->hctl->keysize; - (void)hash_seq((HTAB *)NULL); + hash_seq((HTAB *)NULL); while ((hashent = hash_seq(hashtable)) != (long *) TRUE) { if (hashent == NULL) elog(FATAL, "error in HashTableWalk."); |