diff options
| author | Bruce Momjian | 1998-04-05 05:52:10 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1998-04-05 05:52:10 +0000 |
| commit | 03a7cd1788734d63b013fc8ada0f07571f760cbc (patch) | |
| tree | 82b4b23117f03c668a48143fd5ce6d3b1973c2e5 /src/include | |
| parent | 39740d75bd7de8209032e92d6ef26fcfd92fe145 (diff) | |
Fix for memory leak.
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/miscadmin.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index 9b7749323ae..2080d19ac78 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -11,7 +11,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: miscadmin.h,v 1.20 1998/02/26 04:39:48 momjian Exp $ + * $Id: miscadmin.h,v 1.21 1998/04/05 05:52:10 momjian Exp $ * * NOTES * some of the information in this file will be moved to @@ -116,8 +116,8 @@ extern int GetDatabaseInfo(char *name, Oid *owner, char *path); extern char *ExpandDatabasePath(char *path); /* now in utils/init/miscinit.c */ -extern char *GetDatabasePath(void); -extern char *GetDatabaseName(void); +extern const char *GetDatabasePath(void); +extern const char *GetDatabaseName(void); extern void SetDatabaseName(char *name); extern void SetDatabasePath(char *path); extern char *getpgusername(void); |
