Cleanup warning message from %p

This commit is contained in:
Christian Helmuth 2017-08-23 16:48:57 +02:00
parent e73521a95e
commit 21116803b3
2 changed files with 2 additions and 2 deletions

View File

@ -42,6 +42,6 @@ void Thread::exception(unsigned const cpu)
return;
}
Genode::warning(*this, ": triggered unknown exception ", trapno,
" with error code ", errcode, " at ip=%p", (void*)ip);
" with error code ", errcode, " at ip=", (void*)ip);
_die();
}

View File

@ -43,6 +43,6 @@ void Thread::exception(unsigned const cpu)
return;
}
Genode::warning(*this, ": triggered unknown exception ", trapno,
" with error code ", errcode, " at ip=%p", (void*)ip);
" with error code ", errcode, " at ip=", (void*)ip);
_die();
}