diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2015-01-12 16:08:49 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2015-01-12 16:08:49 -0500 |
commit | 71942a8b3ad516251cc1ba87362917a6614ee435 (patch) | |
tree | e461c50899c2da340147016f65eb7a6780978a96 /src/pl/plpython/plpy_main.c | |
parent | c704977e72358bdfb179c7734a25e9515b285ba9 (diff) | |
download | postgresql-71942a8b3ad516251cc1ba87362917a6614ee435.tar.gz postgresql-71942a8b3ad516251cc1ba87362917a6614ee435.zip |
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 4438721589e..cc94f0a8aee 100644 --- a/src/pl/plpython/plpy_main.c +++ b/src/pl/plpython/plpy_main.c @@ -132,7 +132,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; |