diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2015-01-12 16:08:52 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2015-01-12 16:08:52 -0500 |
commit | 4bb45b99963a4c236d3076fe2c169e79fead5526 (patch) | |
tree | e48d9da26c5966c874ae4aa73789e266a1938c41 /src/pl/plpython/plpy_main.c | |
parent | e9f9ebfe65014ff701b3c0712d1036afea161d1f (diff) |
Fix some functions that were declared static then defined not-static.
Per testing with a compiler that whines about this.
Diffstat (limited to 'src/pl/plpython/plpy_main.c')
-rw-r--r-- | src/pl/plpython/plpy_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pl/plpython/plpy_main.c b/src/pl/plpython/plpy_main.c index 384784796cc..203a8548a43 100644 --- a/src/pl/plpython/plpy_main.c +++ b/src/pl/plpython/plpy_main.c @@ -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; |