mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
Fixups.
svn path=/trunk/; revision=15446
This commit is contained in:
parent
6120955e45
commit
1c7838cc35
1 changed files with 2 additions and 2 deletions
|
@ -1199,8 +1199,8 @@ int usb_hub_init(void)
|
|||
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;
|
||||
|
|
Loading…
Reference in a new issue