From 8d3341266508fc1aed1f1a6bdb4ed885821c81b0 Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Fri, 13 May 2022 09:39:13 +0900 Subject: [PATCH] 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 --- src/include/common/logging.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,