dedicated.c
changeset 1762 01d1e351aafe
parent 1626 6429294a2009
child 1794 44f9deff97ed
--- a/dedicated.c	Wed May 04 10:17:00 2005 +0000
+++ b/dedicated.c	Wed May 04 19:09:25 2005 +0000
@@ -110,12 +110,13 @@
 void CreateWindowsConsoleThread(void)
 {
 	static char tbuffer[9];
+	DWORD dwThreadId;
 	/* Create event to signal when console input is ready */
 	hEvent = CreateEvent(NULL, false, false, _strtime(tbuffer));
 	if (hEvent == NULL)
 		error("Cannot create console event!");
 
-	hThread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)CheckForConsoleInput, 0, 0, NULL);
+	hThread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)CheckForConsoleInput, NULL, 0, &dwThreadId);
 	if (hThread == NULL)
 		error("Cannot create console thread!");