From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=134.134.136.20; helo=mga02.intel.com; envelope-from=eric.jin@intel.com; receiver=edk2-devel@lists.01.org Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 5C41921165247 for ; Thu, 11 Oct 2018 00:37:45 -0700 (PDT) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 11 Oct 2018 00:37:44 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,367,1534834800"; d="scan'208";a="270379961" Received: from shwdeopenpsi175.ccr.corp.intel.com ([10.239.9.140]) by fmsmga005.fm.intel.com with ESMTP; 11 Oct 2018 00:37:26 -0700 From: Eric Jin To: edk2-devel@lists.01.org Date: Thu, 11 Oct 2018 15:36:57 +0800 Message-Id: <20181011073657.4576-1-eric.jin@intel.com> X-Mailer: git-send-email 2.9.0.windows.1 Subject: [edk2-test][Patch] Correct typo in CreateEMMCDeviceNode() X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2018 07:37:45 -0000 Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Eric Jin Cc: Supreeth Venkatesh --- .../DevicePathFromText/BlackBoxTest/DevicePathFromTextBBTestCoverage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePathFromText/BlackBoxTest/DevicePathFromTextBBTestCoverage.c b/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePathFromText/BlackBoxTest/DevicePathFromTextBBTestCoverage.c index d428893..fc099d8 100644 --- a/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePathFromText/BlackBoxTest/DevicePathFromTextBBTestCoverage.c +++ b/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePathFromText/BlackBoxTest/DevicePathFromTextBBTestCoverage.c @@ -1654,7 +1654,7 @@ CreateEMMCDeviceNode ( EMMC_DEVICE_PATH *EMMC; SlotNumberStr = SctSplitStr (&TextDeviceNode, L','); - EMMC = (SD_DEVICE_PATH *) CreateDeviceNode ( + EMMC = (EMMC_DEVICE_PATH *) CreateDeviceNode ( EMMCNodeType, EMMCNodeSubType, sizeof (EMMC_DEVICE_PATH) -- 2.9.0.windows.1