From: John Hodge Date: Fri, 4 May 2012 15:53:51 +0000 (+0800) Subject: Kernel/VTerm - Fixed mistype in warning X-Git-Tag: rel0.15~709^2^2~6 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=3e67a772afc3daa9404b75fc4b4c35bb682fab5b;p=tpg%2Facess2.git Kernel/VTerm - Fixed mistype in warning --- 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 );