From 3e67a772afc3daa9404b75fc4b4c35bb682fab5b Mon Sep 17 00:00:00 2001 From: John Hodge Date: Fri, 4 May 2012 23:53:51 +0800 Subject: [PATCH] Kernel/VTerm - Fixed mistype in warning --- KernelLand/Kernel/drv/vterm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KernelLand/Kernel/drv/vterm.c b/KernelLand/Kernel/drv/vterm.c index 1cc60bec..7d30511f 100644 --- a/KernelLand/Kernel/drv/vterm.c +++ b/KernelLand/Kernel/drv/vterm.c @@ -230,7 +230,7 @@ void VT_SetResolution(int Width, int Height) if( Width != mode.width || Height != mode.height ) { Log_Warning("VTerm", - "Selected resolution (%ix%i is not supported) by the device, using (%ix%i)", + "Selected resolution (%ix%i) is not supported by the device, using (%ix%i)", giVT_RealWidth, giVT_RealHeight, mode.width, mode.height ); -- 2.20.1