RedfishPkg/RedfishLib: Fix enum type mismatch

Fix enum type mismatch between jansson library and JsonLib.

Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>
This commit is contained in:
Michael D Kinney
2025-05-19 13:20:14 -07:00
committed by mergify[bot]
parent 62549edb9f
commit 6c1fd8d567

View File

@@ -525,7 +525,7 @@ getOpResult (
}
stringProp = prop->json;
jsonType = JsonGetType (prop->json);
jsonType = (json_type)JsonGetType (prop->json);
switch (jsonType) {
case JSON_OBJECT:
stringProp = json_object_get (prop->json, propName);