aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorJustus Winter <justus@gnupg.org>2017-08-05 17:55:31 +0200
committerJustus Winter <justus@gnupg.org>2017-08-05 18:01:24 +0200
commitd4d2d12f24ca625daf32dcfc8e75576420ffbd2f (patch)
treefee6e5c2430a5b5acdca9e0201dc4e44b994cafa /utils
parentde4c6545203b090670182c0be36fce4f6f4f2c2a (diff)
downloadhurd-d4d2d12f24ca625daf32dcfc8e75576420ffbd2f.tar.gz
hurd-d4d2d12f24ca625daf32dcfc8e75576420ffbd2f.tar.bz2
hurd-d4d2d12f24ca625daf32dcfc8e75576420ffbd2f.zip
Fix harmless indentation errors tripping [-Wmisleading-indentation].
* trans/new-fifo.c (main): Fix indentation. * utils/rpctrace.c (discover_receive_right): Likewise.
Diffstat (limited to 'utils')
-rw-r--r--utils/rpctrace.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/rpctrace.c b/utils/rpctrace.c
index cb4df8af..e866412a 100644
--- a/utils/rpctrace.c
+++ b/utils/rpctrace.c
@@ -493,8 +493,8 @@ discover_receive_right (mach_port_t send, task_t task)
&& !(info->task != unknown_task
&& info->portname == UNKNOWN_NAME))
return info;
-
- {
+
+ {
int j;
mach_port_t *portnames = NULL;
mach_msg_type_number_t nportnames = 0;
@@ -558,7 +558,7 @@ discover_receive_right (mach_port_t send, task_t task)
if (receiver_info)
return receiver_info;
- }
+ }
return NULL;
}