]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Fix bug in the alternative code for -DNO_MULTIMON (was breaking
authorSimon Tatham <anakin@pobox.com>
Wed, 20 Mar 2002 22:16:00 +0000 (22:16 +0000)
committerSimon Tatham <anakin@pobox.com>
Wed, 20 Mar 2002 22:16:00 +0000 (22:16 +0000)
Cygwin build).

[originally from svn r1595]

window.c

index 7cac4c0318af553029bf91f4af65772e56bbed73..10b456ab8998cf2825fc417018354672aa726e60 100644 (file)
--- 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
 }