summaryrefslogtreecommitdiff
path: root/errlog.c
diff options
context:
space:
mode:
Diffstat (limited to 'errlog.c')
-rw-r--r--errlog.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/errlog.c b/errlog.c
index fd789335..b67c23df 100644
--- a/errlog.c
+++ b/errlog.c
@@ -54,13 +54,13 @@ EFI_STATUS
LogError(const char *file, int line, const char *func, CHAR16 *fmt, ...)
{
va_list args;
- EFI_STATUS status;
+ EFI_STATUS efi_status;
va_start(args, fmt);
- status = VLogError(file, line, func, fmt, args);
+ efi_status = VLogError(file, line, func, fmt, args);
va_end(args);
- return status;
+ return efi_status;
}
VOID