diff options
author | Tom Lane | 2015-01-12 21:08:43 +0000 |
---|---|---|
committer | Tom Lane | 2015-01-12 21:08:43 +0000 |
commit | 7391e2513f486a5df3eebf132c6dd6c16cf4e1f1 (patch) | |
tree | c7f62007414395ccb85e6501069775d091bf2954 /src/pl/plpython/plpy_main.c | |
parent | 5b3ce2c911a2ec9de13b0dea7e135ad945a14583 (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; |