Fixups.
Modified: trunk/reactos/drivers/usb/cromwell/core/hub.c

Modified: trunk/reactos/drivers/usb/cromwell/core/hub.c
--- trunk/reactos/drivers/usb/cromwell/core/hub.c	2005-05-21 01:53:53 UTC (rev 15445)
+++ trunk/reactos/drivers/usb/cromwell/core/hub.c	2005-05-21 01:57:38 UTC (rev 15446)
@@ -1199,8 +1199,8 @@
 		return -1;
 	}
 
-	pid = kernel_thread(hub_thread, NULL,
-		CLONE_FS | CLONE_FILES | CLONE_SIGHAND);
+	pid = kernel_thread((void*)hub_thread, NULL,
+		(CLONE_FS | CLONE_FILES | CLONE_SIGHAND));
 	if (pid >= 0) {
 		khubd_pid = pid;
 		return 0;