summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2023-08-08 01:44:03 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-08-08 02:28:06 +0200
commit71ce0089f78fc27231f39e9aef7356e9e72ed759 (patch)
treea13247867b8b8184aee8a339c32239afc1011485
parent11fc7584fae2f1b72b66368e88327e9f9fb790ee (diff)
exec: Get rid of u_int
-rw-r--r--exec/hashexec.c2
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);