diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2015-01-12 16:08:46 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2015-01-12 16:08:46 -0500 |
commit | 450d9f2d6669e3c97544de9878611ee2964db29d (patch) | |
tree | 0ecc986229068e33e2b03d54b5a4f3a104d1f3f8 /src/pl/plpython/plpy_main.c | |
parent | 4072d91f24681d8d9f0cbdfd58c50ce30f4f1331 (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 5f03efa4fb6..e2513cf1e05 100644 --- a/src/pl/plpython/plpy_main.c +++ b/src/pl/plpython/plpy_main.c @@ -123,7 +123,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; |