Skip to content
Snippets Groups Projects
Commit 7aac567c authored by Simon Peyton Jones's avatar Simon Peyton Jones
Browse files

Fix debug message formatting on Windows

parent 62ee856c
No related merge requests found
......@@ -698,7 +698,7 @@ printThreadBlockage(StgTSO *tso)
break;
#if defined(mingw32_HOST_OS)
case BlockedOnDoProc:
debugBelch("is blocked on proc (request: %ld)", tso->block_info.async_result->reqID);
debugBelch("is blocked on proc (request: %u)", tso->block_info.async_result->reqID);
break;
#endif
case BlockedOnDelay:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment