summaryrefslogtreecommitdiff
path: root/libshouldbeinlibc
diff options
context:
space:
mode:
authorStefan Weil <sw@weilnetz.de>2015-01-03 10:16:11 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2015-01-03 13:10:26 +0100
commitc7441b5eb9bd4327845a1704e07903bacff08962 (patch)
tree26aa5af09c688934dd345e0e5ac87fed1c380eb3 /libshouldbeinlibc
parentbd1d3a48415cb6a7c24c45a899ce38b3ce34956d (diff)
libshouldbeinlibc: Fix typo in local variable name
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'libshouldbeinlibc')
-rw-r--r--libshouldbeinlibc/portxlate.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libshouldbeinlibc/portxlate.c b/libshouldbeinlibc/portxlate.c
index f78abbf1..eb6abfb4 100644
--- a/libshouldbeinlibc/portxlate.c
+++ b/libshouldbeinlibc/portxlate.c
@@ -113,7 +113,7 @@ port_name_xlator_xlate (struct port_name_xlator *x,
error_t err;
mach_port_t port;
mach_msg_type_number_t i;
- mach_msg_type_name_t aquired_type;
+ mach_msg_type_name_t acquired_type;
mach_msg_type_name_t valid_to_types;
if (from_type == 0)
@@ -137,7 +137,7 @@ port_name_xlator_xlate (struct port_name_xlator *x,
? MACH_MSG_TYPE_MAKE_SEND
: MACH_MSG_TYPE_COPY_SEND),
&port,
- &aquired_type);
+ &acquired_type);
if (err)
return err;
@@ -155,7 +155,7 @@ port_name_xlator_xlate (struct port_name_xlator *x,
? MACH_MSG_TYPE_MAKE_SEND
: MACH_MSG_TYPE_COPY_SEND),
&x->ports[i],
- &aquired_type);
+ &acquired_type);
if (err)
x->to_types[i] = 0; /* Don't try to fetch this port again. */
}