From 5f5d55be88dcca5a229596ae0f64eee66d647266 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Fri, 1 Mar 2024 10:36:03 +0100 Subject: [PATCH] dix: unexport XREGISTRY_UNKNOWN define It's not used by external modules, thus no need to have it in the public API. Signed-off-by: Enrico Weigelt, metux IT consult Part-of: --- dix/registry_priv.h | 5 +++++ include/registry.h | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dix/registry_priv.h b/dix/registry_priv.h index f8c12e5ed..0c6a51b12 100644 --- a/dix/registry_priv.h +++ b/dix/registry_priv.h @@ -8,6 +8,11 @@ #include "include/extnsionst.h" #include "include/resource.h" +/* + * Result returned from any unsuccessful lookup + */ +#define XREGISTRY_UNKNOWN "" + /* * Setup and teardown */ diff --git a/include/registry.h b/include/registry.h index a3b26427e..afc8e1c76 100644 --- a/include/registry.h +++ b/include/registry.h @@ -12,11 +12,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #ifndef DIX_REGISTRY_H #define DIX_REGISTRY_H -/* - * Result returned from any unsuccessful lookup - */ -#define XREGISTRY_UNKNOWN "" - #include "resource.h" #include "extnsionst.h"