From 03199f1909e8f2181b60de2f45ea571fe4a8f75c Mon Sep 17 00:00:00 2001 From: Vladimir 'phcoder' Serbinenko Date: Fri, 3 Sep 2010 22:50:11 +0200 Subject: [PATCH] Fix order of dimensions in videoinfo --- grub-core/commands/videoinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grub-core/commands/videoinfo.c b/grub-core/commands/videoinfo.c index caa32c939..febb56aba 100644 --- a/grub-core/commands/videoinfo.c +++ b/grub-core/commands/videoinfo.c @@ -32,7 +32,7 @@ hook (const struct grub_video_mode_info *info) grub_printf (" "); else grub_printf (" 0x%03x ", info->mode_number); - grub_printf ("%4d x %4d x %2d ", info->height, info->width, info->bpp); + grub_printf ("%4d x %4d x %2d ", info->width, info->height, info->bpp); /* Show mask and position details for direct color modes. */ if (info->mode_type & GRUB_VIDEO_MODE_TYPE_RGB)