summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2010-11-26 22:05:29 +0000
committerTom Lane2010-11-26 22:05:29 +0000
commit1d9a0abec1224193fea3acf766b587fc3963a3b8 (patch)
tree35a8d9df9a1a00dcf1affa0eaf40f4bf9c7a8d63
parent4a2516a7f976e2f6671930904d4e97a4832eff9f (diff)
Remove bogus use of PGDLLIMPORT.
That macro should be attached to extern declarations, not actual definitions of variables.
-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;