- Fix warnings in ros' tests

svn path=/trunk/; revision=38887
This commit is contained in:
Stefan Ginsberg 2009-01-18 12:20:51 +00:00
parent 26a6195563
commit eef79b36ef
11 changed files with 23 additions and 27 deletions

View file

@ -15,7 +15,7 @@ BOOL WINAPI QueueUserWorkItem(LPTHREAD_START_ROUTINE,PVOID,ULONG);
#define TestProc(n) \
DWORD CALLBACK TestProc##n(void *ctx)\
{\
printf("TestProc%d thread 0x%x context 0x%p\n", n, GetCurrentThreadId(), ctx);\
printf("TestProc%d thread 0x%lu context 0x%p\n", n, GetCurrentThreadId(), ctx);\
return 0;\
}