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:
committed by
mergify[bot]
parent
62549edb9f
commit
6c1fd8d567
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user