Browse Source

false pointer

git-svn-id: https://svn.inf.ethz.ch/svn/lecturers/a2/trunk@7181 8c9fc860-2736-0410-a75d-ab315db34111
felixf 8 years ago
parent
commit
0697795df3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      source/Win32.Display.Mod

+ 1 - 1
source/Win32.Display.Mod

@@ -345,7 +345,7 @@ VAR
 
 (* Common base handler for all variants of windows provided by this module. *)
 	PROCEDURE DummyHandler( win: Window;  uMsg: LONGINT;  wParam: User32.WParam;  lParam: User32.LParam ): User32.LResult;
-	VAR res: User32.LResult; proc: User32.WndProc; hhWnd: ANY;  ret: Kernel32.BOOL;
+	VAR res: User32.LResult; proc: User32.WndProc; hhWnd: ADDRESS;  ret: Kernel32.BOOL;
 	BEGIN
 		IF (uMsg = User32.WMDestroy) & ~(external IN win.state) THEN
 			EXCL( win.state, update );  DEC( nWindows );