aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2010-11-26 17:05:29 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2010-11-26 17:05:29 -0500
commit1d9a0abec1224193fea3acf766b587fc3963a3b8 (patch)
tree35a8d9df9a1a00dcf1affa0eaf40f4bf9c7a8d63 /src
parent4a2516a7f976e2f6671930904d4e97a4832eff9f (diff)
downloadpostgresql-1d9a0abec1224193fea3acf766b587fc3963a3b8.tar.gz
postgresql-1d9a0abec1224193fea3acf766b587fc3963a3b8.zip
Remove bogus use of PGDLLIMPORT.
That macro should be attached to extern declarations, not actual definitions of variables.
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/init/globals.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/init/globals.c b/src/backend/utils/init/globals.c
index 5855fe46663..66033ffe175 100644
--- a/src/backend/utils/init/globals.c
+++ b/src/backend/utils/init/globals.c
@@ -123,4 +123,4 @@ int GinFuzzySearchLimit = 0;
* Hook on object accesses. This is intended as infrastructure for security
* and logging plugins.
*/
-PGDLLIMPORT object_access_hook_type object_access_hook = NULL;
+object_access_hook_type object_access_hook = NULL;