summaryrefslogtreecommitdiff
path: root/include/console.h
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2021-03-09 14:40:03 -0500
committerPeter Jones <pjones@redhat.com>2021-03-10 15:54:20 -0500
commit9beca885c29c77bb901547321a5ce6fd3c9c8ee3 (patch)
treeb61a67de468dfdff2225d52b03f280b807714215 /include/console.h
parent766aac4d5cfbe76026be5ce718b0883ee211f323 (diff)
downloadefi-boot-shim-9beca885c29c77bb901547321a5ce6fd3c9c8ee3.tar.gz
efi-boot-shim-9beca885c29c77bb901547321a5ce6fd3c9c8ee3.zip
Fix stdarg to work the same everywhere.
This gets us the same working definition for VA_* va_* etc everywhere, and it's the same definition edk2 is using. Signed-off-by: Peter Jones <pjones@redhat.com>
Diffstat (limited to 'include/console.h')
-rw-r--r--include/console.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/console.h b/include/console.h
index d8af3cd3..00982744 100644
--- a/include/console.h
+++ b/include/console.h
@@ -102,7 +102,7 @@ extern UINT32 verbose;
dprint_(L"%a:%d:%a() " fmt, __FILE__, __LINE__ - 1, __func__, \
##__VA_ARGS__)
extern EFI_STATUS EFIAPI vdprint_(const CHAR16 *fmt, const char *file, int line,
- const char *func, elf_va_list args);
+ const char *func, va_list args);
#define vdprint(fmt, ...) \
vdprint_(fmt, __FILE__, __LINE__ - 1, __func__, ##__VA_ARGS__)