From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id BA5C11A1E60 for ; Mon, 10 Oct 2016 18:44:59 -0700 (PDT) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP; 10 Oct 2016 18:44:59 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,327,1473145200"; d="scan'208";a="1052074168" Received: from shwde7172.ccr.corp.intel.com ([10.239.9.23]) by fmsmga001.fm.intel.com with ESMTP; 10 Oct 2016 18:44:58 -0700 From: Liming Gao To: edk2-devel@lists.01.org Cc: Ruiyu Ni Date: Tue, 11 Oct 2016 09:44:55 +0800 Message-Id: <1476150295-7112-1-git-send-email-liming.gao@intel.com> X-Mailer: git-send-email 2.8.0.windows.1 Subject: [Patch] DuetPkg DxeIpl and EfiLdr: Add the missing EFIAPI for the function X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Oct 2016 01:44:59 -0000 The function with the variable parameters should have EFIAPI. Cc: Ruiyu Ni Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Liming Gao --- DuetPkg/DxeIpl/Debug.c | 1 + DuetPkg/DxeIpl/Debug.h | 1 + DuetPkg/EfiLdr/Debug.c | 1 + DuetPkg/EfiLdr/Debug.h | 1 + 4 files changed, 4 insertions(+) diff --git a/DuetPkg/DxeIpl/Debug.c b/DuetPkg/DxeIpl/Debug.c index 1cb7e39..800f008 100644 --- a/DuetPkg/DxeIpl/Debug.c +++ b/DuetPkg/DxeIpl/Debug.c @@ -52,6 +52,7 @@ ClearScreen ( } VOID +EFIAPI PrintString ( IN CONST CHAR8 *FormatString, ... diff --git a/DuetPkg/DxeIpl/Debug.h b/DuetPkg/DxeIpl/Debug.h index 7fcad26..81bb826 100644 --- a/DuetPkg/DxeIpl/Debug.h +++ b/DuetPkg/DxeIpl/Debug.h @@ -27,6 +27,7 @@ PrintHeader ( ); VOID +EFIAPI PrintString ( IN CONST CHAR8 *FormatString, ... diff --git a/DuetPkg/EfiLdr/Debug.c b/DuetPkg/EfiLdr/Debug.c index 84b2772..0727292 100644 --- a/DuetPkg/EfiLdr/Debug.c +++ b/DuetPkg/EfiLdr/Debug.c @@ -49,6 +49,7 @@ ClearScreen ( } VOID +EFIAPI PrintString ( IN CONST CHAR8 *FormatString, ... diff --git a/DuetPkg/EfiLdr/Debug.h b/DuetPkg/EfiLdr/Debug.h index f6aa7a2..4252f31 100644 --- a/DuetPkg/EfiLdr/Debug.h +++ b/DuetPkg/EfiLdr/Debug.h @@ -27,6 +27,7 @@ PrintHeader ( ); VOID +EFIAPI PrintString ( IN CONST CHAR8 *FormatString, ... -- 2.8.0.windows.1