diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-08-08 01:44:03 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-08-08 02:28:06 +0200 |
commit | 71ce0089f78fc27231f39e9aef7356e9e72ed759 (patch) | |
tree | a13247867b8b8184aee8a339c32239afc1011485 /exec | |
parent | 11fc7584fae2f1b72b66368e88327e9f9fb790ee (diff) | |
download | hurd-71ce0089f78fc27231f39e9aef7356e9e72ed759.tar.gz hurd-71ce0089f78fc27231f39e9aef7356e9e72ed759.tar.bz2 hurd-71ce0089f78fc27231f39e9aef7356e9e72ed759.zip |
exec: Get rid of u_int
Diffstat (limited to 'exec')
-rw-r--r-- | exec/hashexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exec/hashexec.c b/exec/hashexec.c index 9cd5392b..0c94673e 100644 --- a/exec/hashexec.c +++ b/exec/hashexec.c @@ -466,7 +466,7 @@ check_hashbang (struct execdata *e, /* The exec of the interpreter succeeded! Deallocate the resources we passed to that exec. We don't need to save them in a bootinfo structure; the exec of the interpreter takes care of that. */ - u_int i; + unsigned i; mach_port_deallocate (mach_task_self (), file); task_resume (oldtask); /* Our caller suspended it. */ mach_port_deallocate (mach_task_self (), oldtask); |