diff options
author | Michael Paquier | 2022-05-13 00:39:13 +0000 |
---|---|---|
committer | Michael Paquier | 2022-05-13 00:39:13 +0000 |
commit | 8d3341266508fc1aed1f1a6bdb4ed885821c81b0 (patch) | |
tree | e86338aee7ceabf7cf3bf6f27adffcca5f39a157 | |
parent | 07d683b54af854098cc559d4b8640905f9efa0ea (diff) |
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/[email protected]
-rw-r--r-- | src/include/common/logging.h | 2 |
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, |