diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-09-19 20:02:53 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-09-19 20:02:53 +0000 |
commit | 8594ade7b017a4190817a746114040af9d44080a (patch) | |
tree | 372335aeb23bbf9bd8823ea80e7c6b96ce7b47f4 /src | |
parent | b19b90d7068fa40aff782ed93b5f0ffe2944110d (diff) | |
download | postgresql-8594ade7b017a4190817a746114040af9d44080a.tar.gz postgresql-8594ade7b017a4190817a746114040af9d44080a.zip |
Another small change. Added the void keyword to an empty arg list.
Submitted by: darcy@druid.druid.com (D'Arcy J.M. Cain)
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/include/miscadmin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/include/miscadmin.h b/src/backend/include/miscadmin.h index 58bbb7d8d2f..7f8b392b734 100644 --- a/src/backend/include/miscadmin.h +++ b/src/backend/include/miscadmin.h @@ -12,7 +12,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: miscadmin.h,v 1.2 1996/09/16 06:11:44 scrappy Exp $ + * $Id: miscadmin.h,v 1.3 1996/09/19 20:02:53 scrappy Exp $ * * NOTES * some of the information in this file will be moved to @@ -54,7 +54,7 @@ extern int Quiet; extern char *DataDir; extern char OutputFileName[]; -extern void InitGlobals(); +extern void InitGlobals(void); /* * done in storage/backendid.h for now. |