Misc spelling fixes.
diff --git a/windows/win.c b/windows/win.c
index 551d56c..1017c92 100644
--- a/windows/win.c
+++ b/windows/win.c
@@ -235,7 +235,7 @@
* WIN_GetPtr
*
* Return a pointer to the WND structure if local to the process,
- * or WND_OTHER_PROCESS is handle may be valid in other process.
+ * or WND_OTHER_PROCESS if handle may be valid in other process.
* If ret value is a valid pointer, it must be released with WIN_ReleasePtr.
*/
WND *WIN_GetPtr( HWND hwnd )
diff --git a/windows/winproc.c b/windows/winproc.c
index 36ec375..2df3ec8 100644
--- a/windows/winproc.c
+++ b/windows/winproc.c
@@ -520,7 +520,7 @@
{
WINDOWPROC *next = ((WINDOWPROC *)proc)->next;
if (((WINDOWPROC *)proc)->user != user) break;
- TRACE_(win)("freeing %08x\n", (UINT)proc);
+ TRACE_(win)("freeing %08x (%d)\n", (UINT)proc, user);
HeapFree( WinProcHeap, 0, proc );
proc = next;
}