1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-05 02:22:28 +03:00

Fix some functions that were declared static then defined not-static.

Per testing with a compiler that whines about this.
This commit is contained in:
Tom Lane
2015-01-12 16:08:52 -05:00
parent e9f9ebfe65
commit 4bb45b9996
2 changed files with 11 additions and 11 deletions

View File

@@ -131,7 +131,7 @@ _PG_init(void)
* This should only be called once from _PG_init. Initialize the Python
* interpreter and global data.
*/
void
static void
PLy_init_interp(void)
{
static PyObject *PLy_interp_safe_globals = NULL;