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/bootstrap/bootstrap.c | |
parent | 0f6a961e299b1dc3c57bf34d714d2eb0d9b5e6eb (diff) | |
download | postgresql-ea5b5357cdc79c7742c035032f5500e4a97a6d55.tar.gz postgresql-ea5b5357cdc79c7742c035032f5500e4a97a6d55.zip |
Remove more (void) and fix -Wall warnings.
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index 054c7e1f598..4d8cfbd7406 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -7,7 +7,7 @@ * Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.18 1997/06/25 21:12:19 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.19 1997/08/12 22:52:04 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -1082,7 +1082,7 @@ index_register(char *heap, ILHead = newind; - (void) MemoryContextSwitchTo(oldcxt); + MemoryContextSwitchTo(oldcxt); } void |