From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-1.mimecast.com (us-smtp-delivery-1.mimecast.com [205.139.110.61]) by mx.groups.io with SMTP id smtpd.web10.7118.1581041547166115746 for ; Thu, 06 Feb 2020 18:12:27 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=eZTJydsW; spf=pass (domain: redhat.com, ip: 205.139.110.61, mailfrom: philmd@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1581041546; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=XzZM4DMzjODvbVVwuTQal2JYYP+KhoyDowWQ9SoMVl4=; b=eZTJydsW+ba2oGHi1v2Q7lNFTHawPwly9uMoyZKa4vWGBUa401EOkEzxiESSAzUHK0PLnT sDLYB3a8vEVQSbieBCdaJFyGXlSgTxdC95F95jhheOZXJofIsXLLIuKOJsMFpXpw2YZbfi 9AllfcPp7EFbUfITnTDmgF+VMNSQGHs= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-372-dnw2xT0SM22KXgYy_lcBKg-1; Thu, 06 Feb 2020 21:12:22 -0500 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 8F81010753F3; Fri, 7 Feb 2020 02:12:21 +0000 (UTC) Received: from x1w.redhat.com (ovpn-204-120.brq.redhat.com [10.40.204.120]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 7F39460BEC; Fri, 7 Feb 2020 02:12:20 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Laszlo Ersek , Eric Dong Subject: [PATCH v3 74/78] StandaloneMmPkg: Fix a typo Date: Fri, 7 Feb 2020 02:08:27 +0100 Message-Id: <20200207010831.9046-75-philmd@redhat.com> In-Reply-To: <20200207010831.9046-1-philmd@redhat.com> References: <20200207010831.9046-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-MC-Unique: dnw2xT0SM22KXgYy_lcBKg-1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Fix a typo in a comment. Cc: Achin Gupta Cc: Jiewen Yao Cc: Supreeth Venkatesh Reviewed-by: Jiewen Yao Signed-off-by: Philippe Mathieu-Daude --- StandaloneMmPkg/Core/Dispatcher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StandaloneMmPkg/Core/Dispatcher.c b/StandaloneMmPkg/Core/Dispa= tcher.c index fe10e65c4bf0..2f795d01dc1f 100644 --- a/StandaloneMmPkg/Core/Dispatcher.c +++ b/StandaloneMmPkg/Core/Dispatcher.c @@ -431,7 +431,7 @@ MmLoadImage ( // // Copy the PDB file name to our temporary string, and replace .pdb wi= th .efi // The PDB file name is limited in the range of 0~255. - // If the length is bigger than 255, trim the redudant characters to a= void overflow in array boundary. + // If the length is bigger than 255, trim the redundant characters to = avoid overflow in array boundary. // for (Index =3D 0; Index < sizeof (EfiFileName) - 4; Index++) { EfiFileName[Index] =3D ImageContext.PdbPointer[Index + StartIndex]; --=20 2.21.1