diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2022-12-06 23:57:49 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-12-07 23:26:56 +0100 |
commit | 30262b74d994f724c15af9c4d3e7e0f53a9904b3 (patch) | |
tree | 3ab2f7766fa585e8016c77996a931efa53366553 /ddb | |
parent | 688a82ff324403dd2b439755a3d95773e691be69 (diff) | |
download | gnumach-30262b74d994f724c15af9c4d3e7e0f53a9904b3.tar.gz gnumach-30262b74d994f724c15af9c4d3e7e0f53a9904b3.tar.bz2 gnumach-30262b74d994f724c15af9c4d3e7e0f53a9904b3.zip |
Use mach_port_name in db_lookup_port
Message-Id: <Y5AdTQfSxStjbhsj@reue>
Diffstat (limited to 'ddb')
-rw-r--r-- | ddb/db_print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ddb/db_print.c b/ddb/db_print.c index 832faf57..8a76beea 100644 --- a/ddb/db_print.c +++ b/ddb/db_print.c @@ -493,7 +493,7 @@ db_lookup_port( return(0); if (id < 0) return(0); - entry = ipc_entry_lookup(thread->task->itk_space, (mach_port_t) id); + entry = ipc_entry_lookup(thread->task->itk_space, (mach_port_name_t) id); if (entry && entry->ie_bits & MACH_PORT_TYPE_PORT_RIGHTS) return((ipc_port_t)entry->ie_object); return(0); |