diff options
author | Liming Gao <liming.gao@intel.com> | 2016-10-11 09:44:07 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2016-10-12 20:35:11 +0800 |
commit | d9c86bee92be2d95aad6583d9f591fa94cd35037 (patch) | |
tree | e79792b81b4dd332a813b053c53f99af294d92db | |
parent | c3aa61b571b89223bd2b47b8769c169e2ced91f6 (diff) | |
download | edk2-d9c86bee92be2d95aad6583d9f591fa94cd35037.zip edk2-d9c86bee92be2d95aad6583d9f591fa94cd35037.tar.gz edk2-d9c86bee92be2d95aad6583d9f591fa94cd35037.tar.bz2 |
DuetPkg DxeIpl and EfiLdr: Add the missing EFIAPI for the function
The function with the variable parameters should have EFIAPI.
Cc: Ruiyu Ni <ruiyu.ni@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com>
-rw-r--r-- | DuetPkg/DxeIpl/Debug.c | 1 | ||||
-rw-r--r-- | DuetPkg/DxeIpl/Debug.h | 1 | ||||
-rw-r--r-- | DuetPkg/EfiLdr/Debug.c | 1 | ||||
-rw-r--r-- | DuetPkg/EfiLdr/Debug.h | 1 |
4 files changed, 4 insertions, 0 deletions
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,
...
|