# HG changeset patch # User Eric Wing # Date 1340091180 25200 # Node ID aace3301c8d1391285d044a6cc4ab5c3d37468ef # Parent 8063b19bd40ea256dadfa6c4db8539e0e8a7328f Fixed misspelled function name in _WIN32 section 'Internal_PlatformPlatformGetThreadID' (looks like search & replace bug). Thanks to Johnson Lin reporting this issue! Johnson Lin < arch . jslin - at - gmail . com > diff -r 8063b19bd40e -r aace3301c8d1 Isolated/tErrorLib.c --- a/Isolated/tErrorLib.c Tue Jun 19 00:31:36 2012 -0700 +++ b/Isolated/tErrorLib.c Tue Jun 19 00:33:00 2012 -0700 @@ -59,7 +59,7 @@ (HANDLE)mutex ); } - size_t Internal_PlatformPlatformGetThreadID(void) + size_t Internal_PlatformGetThreadID(void) { return((size_t)GetCurrentThreadId()); }