1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

Fix leading whitespaces.

This commit is contained in:
Ondrej Bilka
2013-06-06 19:36:03 +02:00
parent 25506f09dd
commit 350635a59a
67 changed files with 203 additions and 132 deletions

View File

@ -75,10 +75,10 @@ __mach_msg_destroy(msg)
mach_msg_body_t *body;
mach_msg_descriptor_t *saddr, *eaddr;
body = (mach_msg_body_t *) (msg + 1);
saddr = (mach_msg_descriptor_t *)
body = (mach_msg_body_t *) (msg + 1);
saddr = (mach_msg_descriptor_t *)
((mach_msg_base_t *) msg + 1);
eaddr = saddr + body->msgh_descriptor_count;
eaddr = saddr + body->msgh_descriptor_count;
for ( ; saddr < eaddr; saddr++) {
switch (saddr->type.type) {