Skip to content
Snippets Groups Projects
Commit fab20b11 authored by Moe Jette's avatar Moe Jette
Browse files

Fix bad log format.

parent c0bda570
No related branches found
No related tags found
No related merge requests found
......@@ -839,7 +839,7 @@ fatal_cleanup(void)
cup = &cu->next;
continue;
}
debug("Calling cleanup 0x%lx(0x%lx)",
debug("Calling cleanup 0x%x(0x%x)",
(u_long) cu->proc, (u_long) cu->context);
(*cu->proc) (cu->context);
*cup = cu->next;
......@@ -849,7 +849,7 @@ fatal_cleanup(void)
cu = *cup;
if (cu->thread_id != 0)
continue;
debug("Calling cleanup 0x%lx(0x%lx)",
debug("Calling cleanup 0x%x(0x%x)",
(u_long) cu->proc, (u_long) cu->context);
(*cu->proc) (cu->context);
}
......
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