mirror of
https://github.com/genodelabs/genode.git
synced 2025-02-21 18:06:50 +00:00
hw: Fix format string for 64 bit platforms
Use the format specifier of the largest possible type and cast the value to the chosen type. This avoids compiler warnings on x86_64.
This commit is contained in:
parent
92efc13a17
commit
f4cb9101a4
@ -384,8 +384,8 @@ void Thread::_call_send_request_msg()
|
|||||||
{
|
{
|
||||||
Thread * const dst = Thread::pool()->object(user_arg_1());
|
Thread * const dst = Thread::pool()->object(user_arg_1());
|
||||||
if (!dst) {
|
if (!dst) {
|
||||||
PWRN("%s -> %s: cannot send to unknown recipient %u",
|
PWRN("%s -> %s: cannot send to unknown recipient %llu",
|
||||||
pd_label(), label(), user_arg_1());
|
pd_label(), label(), (unsigned long long)user_arg_1());
|
||||||
_become_inactive(AWAITS_IPC);
|
_become_inactive(AWAITS_IPC);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user