From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mx0b-002e3701.pphosted.com (mx0b-002e3701.pphosted.com [148.163.143.35]) by mx.groups.io with SMTP id smtpd.web09.3281.1618467993420399429 for ; Wed, 14 Apr 2021 23:26:33 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@hpe.com header.s=pps0720 header.b=CFrDu47w; spf=pass (domain: hpe.com, ip: 148.163.143.35, mailfrom: prvs=073936702f=abner.chang@hpe.com) Received: from pps.filterd (m0150244.ppops.net [127.0.0.1]) by mx0b-002e3701.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 13F6NLtC024393 for ; Thu, 15 Apr 2021 06:26:32 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=hpe.com; h=from : to : cc : subject : date : message-id; s=pps0720; bh=ERnOr/1mph1VzUAFlUtc7923RizsDMMUilhPbvGF7Bo=; b=CFrDu47wjrZH27K3z3nXfujpqSB4sXl+0RRjaaxsrI8afAZavNFzn+eRT+a8gnU4A3A0 B1QwyrHo/AjrbRy8j+S+c1YFYG0VjW0KLfm2ti3uOoUtxAzsoLSQq076QY4nt1GTj/3T ss1AQLBzNHG7/xf1LRtc3vaXKme21VHTjCWNO4R8WANQAMeVBRkvBxtgcMdLRGIGw8Pn e3qUE2kBpGttVUhs706iKTuxw/c4E05rSyOrUt6vcIPVVNLYD/cn2/CJsoI3isaxXoAr UG7oYzDEcM+1ObX9t43BLqGFGywGqleoWLBFi9iW1zGRi25j2LuP18OevlEwfFKlDQXp VA== Received: from g4t3427.houston.hpe.com (g4t3427.houston.hpe.com [15.241.140.73]) by mx0b-002e3701.pphosted.com with ESMTP id 37ww00gmfy-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Thu, 15 Apr 2021 06:26:32 +0000 Received: from g4t3433.houston.hpecorp.net (g4t3433.houston.hpecorp.net [16.208.49.245]) by g4t3427.houston.hpe.com (Postfix) with ESMTP id DC4CB5C for ; Thu, 15 Apr 2021 06:26:31 +0000 (UTC) Received: from abner-virtual-machine.asiapacific.hpqcorp.net (abner-virtual-machine.asiapacific.hpqcorp.net [15.119.210.153]) by g4t3433.houston.hpecorp.net (Postfix) with ESMTP id 1B77846; Thu, 15 Apr 2021 06:26:30 +0000 (UTC) From: "Abner Chang" To: devel@edk2.groups.io Cc: Nickle Wang Subject: [PATCH] RedfishPkg/RestJsonStructureDxe: Fix typo in function header Date: Thu, 15 Apr 2021 13:34:30 +0800 Message-Id: <20210415053430.25164-1-abner.chang@hpe.com> X-Mailer: git-send-email 2.17.1 X-Proofpoint-GUID: M6FM528B9sJ4n6yZlJ3x-C1a94WAgbxj X-Proofpoint-ORIG-GUID: M6FM528B9sJ4n6yZlJ3x-C1a94WAgbxj X-HPE-SCL: -1 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.391,18.0.761 definitions=2021-04-15_02:2021-04-15,2021-04-15 signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 impostorscore=0 suspectscore=0 clxscore=1015 mlxscore=0 lowpriorityscore=0 bulkscore=0 priorityscore=1501 spamscore=0 phishscore=0 malwarescore=0 mlxlogscore=896 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2104060000 definitions=main-2104150045 Fix the typo [in]/[out] of parameter DestroyStructure in function header. Signed-off-by: Abner Chang Cc: Nickle Wang --- MdePkg/Include/Protocol/RestJsonStructure.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MdePkg/Include/Protocol/RestJsonStructure.h b/MdePkg/Include/Protocol/RestJsonStructure.h index c9e9a35a41..ea3c4a62a9 100644 --- a/MdePkg/Include/Protocol/RestJsonStructure.h +++ b/MdePkg/Include/Protocol/RestJsonStructure.h @@ -132,7 +132,7 @@ EFI_STATUS supports. @param[in] ToStructure The function to convert REST JSON resource to structure. @param[in] ToJson The function to convert REST JSON structure to JSON in text format. - @param[out] DestroyStructure Destroy REST JSON structure returned in ToStructure() function. + @param[in] DestroyStructure Destroy REST JSON structure returned in ToStructure() function. @retval EFI_SUCCESS Register successfully. @retval Others Fail to register. -- 2.17.1