Skip to content

Commit

Permalink
Warning police: "%p" format expects a void*
Browse files Browse the repository at this point in the history
  • Loading branch information
sven.panne@aedion.de committed Feb 3, 2007
1 parent ddf73c0 commit c7c9df4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rts/Capability.c
Expand Up @@ -677,7 +677,7 @@ shutdownCapability (Capability *cap, Task *task)
for (t = cap->spare_workers; t != NULL; t = t->next) {
if (!osThreadIsAlive(t->id)) {
debugTrace(DEBUG_sched,
"worker thread %p has died unexpectedly", t->id);
"worker thread %p has died unexpectedly", (void *)t->id);
if (!prev) {
cap->spare_workers = t->next;
} else {
Expand Down

0 comments on commit c7c9df4

Please sign in to comment.