mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-15 16:44:36 +02:00
Fix format string
This commit is contained in:
parent
9a43ef26ad
commit
ee64b092a2
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ void CompilerThreadTimeoutLinux::compiler_signal_handler(int signo, siginfo_t* i
|
||||||
switch (signo) {
|
switch (signo) {
|
||||||
case TIMEOUT_SIGNAL: {
|
case TIMEOUT_SIGNAL: {
|
||||||
CompileTask* task = CompilerThread::current()->task();
|
CompileTask* task = CompilerThread::current()->task();
|
||||||
assert(false, "compile task %d (%s) timed out after %ld ms",
|
assert(false, "compile task %d (%s) timed out after " INTPTR_FORMAT " ms",
|
||||||
task->compile_id(), task->method()->name_and_sig_as_C_string(), CompileTaskTimeout);
|
task->compile_id(), task->method()->name_and_sig_as_C_string(), CompileTaskTimeout);
|
||||||
}
|
}
|
||||||
default: {
|
default: {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue