aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--stand/efi/loader/framebuffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stand/efi/loader/framebuffer.c b/stand/efi/loader/framebuffer.c
index 1118345b2625..c6b187d04596 100644
--- a/stand/efi/loader/framebuffer.c
+++ b/stand/efi/loader/framebuffer.c
@@ -611,10 +611,10 @@ text_autoresize()
}
static int
-uga_autoresize(EFI_UGA_DRAW_PROTOCOL *gop)
+uga_autoresize(EFI_UGA_DRAW_PROTOCOL *uga)
{
- return (CMD_OK);
+ return (text_autoresize());
}
COMMAND_SET(efi_autoresize, "efi-autoresizecons", "EFI Auto-resize Console", command_autoresize);