summaryrefslogtreecommitdiff
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
parentde4c6545203b090670182c0be36fce4f6f4f2c2a (diff)
Fix harmless indentation errors tripping [-Wmisleading-indentation].
* trans/new-fifo.c (main): Fix indentation. * utils/rpctrace.c (discover_receive_right): Likewise.
-rw-r--r--trans/new-fifo.c2
-rw-r--r--utils/rpctrace.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/trans/new-fifo.c b/trans/new-fifo.c
index f11cecae..c293b764 100644
--- a/trans/new-fifo.c
+++ b/trans/new-fifo.c
@@ -220,7 +220,7 @@ main (int argc, char **argv)
if (err)
error (1, 0, "error creating protid port class");
- err = trivfs_add_protid_port_class (&server_port_class);
+ err = trivfs_add_protid_port_class (&server_port_class);
if (err)
error (1, 0, "error creating protid port class");
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;
}