From: Michael Paquier Date: Fri, 13 May 2022 00:39:13 +0000 (+0900) Subject: Remove PGDLLIMPORT marker from __pg_log_level X-Git-Tag: REL_15_BETA1~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8d3341266508fc1aed1f1a6bdb4ed885821c81b0;p=thirdparty%2Fpostgresql.git 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 --- 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,