mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
Fix i386 build
svn path=/branches/ros-amd64-bringup/; revision=44537
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
DWORD WINAPI
|
||||
thread_main1(LPVOID param)
|
||||
{
|
||||
printf("Thread 1 running (Counter %lu)\n", param);
|
||||
printf("Thread 1 running (Counter %lu)\n", PtrToLong(param));
|
||||
SleepEx(INFINITE, TRUE);
|
||||
return 0;
|
||||
}
|
||||
@@ -16,7 +16,7 @@ thread_main1(LPVOID param)
|
||||
DWORD WINAPI
|
||||
thread_main2(LPVOID param)
|
||||
{
|
||||
printf("Thread 2 running (Counter %lu)\n", param);
|
||||
printf("Thread 2 running (Counter %lu)\n", PtrToLong(param));
|
||||
Sleep(INFINITE);
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user