From: Simon Tatham Date: Wed, 20 Mar 2002 22:16:00 +0000 (+0000) Subject: Fix bug in the alternative code for -DNO_MULTIMON (was breaking X-Git-Tag: 0.53~104 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=9157417feaafc411433f289248f65b0928ee7c06;p=PuTTY.git Fix bug in the alternative code for -DNO_MULTIMON (was breaking Cygwin build). [originally from svn r1595] --- diff --git a/window.c b/window.c index 7cac4c03..10b456ab 100644 --- a/window.c +++ b/window.c @@ -4368,7 +4368,7 @@ static int get_fullscreen_rect(RECT * ss) ss->right = GetSystemMetrics(SM_CXSCREEN); ss->bottom = GetSystemMetrics(SM_CYSCREEN); */ - return GetClientRect(GetDesktopWindow(), &ss); + return GetClientRect(GetDesktopWindow(), ss); #endif }