aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2022-05-13 09:39:13 +0900
committerMichael Paquier <michael@paquier.xyz>2022-05-13 09:39:13 +0900
commit8d3341266508fc1aed1f1a6bdb4ed885821c81b0 (patch)
treee86338aee7ceabf7cf3bf6f27adffcca5f39a157 /src
parent07d683b54af854098cc559d4b8640905f9efa0ea (diff)
downloadpostgresql-8d3341266508fc1aed1f1a6bdb4ed885821c81b0.tar.gz
postgresql-8d3341266508fc1aed1f1a6bdb4ed885821c81b0.zip
Remove PGDLLIMPORT marker from __pg_log_level
Per discussion with Tom Lane and Andres Freund. I have misunderstood the intention behind the choice done in 9a374b7. Discussion: https://postgr.es/m/20220512153737.6kbbcf4qyvwgq4s2@alap3.anarazel.de
Diffstat (limited to 'src')
-rw-r--r--src/include/common/logging.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/common/logging.h b/src/include/common/logging.h
index 2ab9f0ea502..9f426c32d61 100644
--- a/src/include/common/logging.h
+++ b/src/include/common/logging.h
@@ -51,7 +51,7 @@ enum pg_log_level
/*
* __pg_log_level is the minimum log level that will actually be shown.
*/
-extern PGDLLIMPORT enum pg_log_level __pg_log_level;
+extern enum pg_log_level __pg_log_level;
/*
* A log message can have several parts. The primary message is required,