From 10faedf72b1fc5b19c48857ba751fcaf256f6841 Mon Sep 17 00:00:00 2001 From: akallabeth Date: Tue, 10 Dec 2024 14:51:03 +0100 Subject: [PATCH] [winpr,json] fix include for json-c The default include contains the json-c path, so do not use it when including headers. --- winpr/libwinpr/utils/json/json.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winpr/libwinpr/utils/json/json.c b/winpr/libwinpr/utils/json/json.c index 81eec9718..3fc99dfa0 100644 --- a/winpr/libwinpr/utils/json/json.c +++ b/winpr/libwinpr/utils/json/json.c @@ -27,7 +27,7 @@ #include #endif #if defined(WITH_JSONC) -#include +#include #endif #if defined(WITH_CJSON)