diff options
| author | Tom Lane | 2010-06-17 17:44:40 +0000 |
|---|---|---|
| committer | Tom Lane | 2010-06-17 17:44:40 +0000 |
| commit | 78e8f0025e3f18855dc0af5916223f9fcfda5706 (patch) | |
| tree | b1aa754d627ad63d32b3dd0ad39936a01e2af146 /src/include/miscadmin.h | |
| parent | 09698bb5fb20a069f84ddbfab0bff9ae0d0f7c8a (diff) | |
Clean up some randomness associated with trace_recovery_messages: don't
put the variable declaration in the middle of a bunch of externs,
and do use extern where it should be used.
Diffstat (limited to 'src/include/miscadmin.h')
| -rw-r--r-- | src/include/miscadmin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index 5d17acd6cdd..a65bcda5044 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -13,7 +13,7 @@ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.220 2010/02/26 02:01:20 momjian Exp $ + * $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.221 2010/06/17 17:44:40 tgl Exp $ * * NOTES * some of the information in this file should be moved to other files. @@ -242,7 +242,7 @@ extern void PreventCommandDuringRecovery(const char *cmdname); /* in utils/misc/guc.c */ extern int trace_recovery_messages; -int trace_recovery(int trace_level); +extern int trace_recovery(int trace_level); /***************************************************************************** * pdir.h -- * |
