mirror of
https://github.com/postgres/postgres.git
synced 2025-11-12 05:01:15 +03:00
Remove more (void) and fix -Wall warnings.
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/sort/Attic/lselect.c,v 1.4 1997/08/06 03:41:47 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/sort/Attic/lselect.c,v 1.5 1997/08/12 22:55:00 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -183,8 +183,6 @@ tuplecmp(HeapTuple ltup, HeapTuple rtup, LeftistContext context)
|
||||
{
|
||||
register char *lattr, *rattr;
|
||||
int nkey = 0;
|
||||
extern int Nkeys;
|
||||
extern ScanKey Key;
|
||||
int result = 0;
|
||||
bool isnull;
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/sort/Attic/psort.c,v 1.12 1997/08/12 20:16:14 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/sort/Attic/psort.c,v 1.13 1997/08/12 22:55:02 momjian Exp $
|
||||
*
|
||||
* NOTES
|
||||
* Sorts the first relation into the second relation.
|
||||
@@ -35,6 +35,9 @@
|
||||
*/
|
||||
#include <stdio.h>
|
||||
#include <math.h>
|
||||
#include <string.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "postgres.h"
|
||||
|
||||
@@ -342,9 +345,8 @@ bool
|
||||
createrun(Sort *node, FILE *file, bool *empty)
|
||||
{
|
||||
register HeapTuple lasttuple;
|
||||
register HeapTuple btup, tup;
|
||||
register HeapTuple tup;
|
||||
struct leftist *nextrun;
|
||||
Buffer b;
|
||||
bool foundeor;
|
||||
short junk;
|
||||
|
||||
@@ -726,7 +728,6 @@ struct tapelst {
|
||||
};
|
||||
|
||||
static struct tapelst *Tapes = NULL;
|
||||
static char Tempfile[MAXPGPATH] = TEMPDIR;
|
||||
|
||||
/*
|
||||
* gettape - returns an open stream for writing/reading
|
||||
|
||||
Reference in New Issue
Block a user