diff options
author | Justus Winter <justus@gnupg.org> | 2017-08-05 17:55:31 +0200 |
---|---|---|
committer | Justus Winter <justus@gnupg.org> | 2017-08-05 18:01:24 +0200 |
commit | d4d2d12f24ca625daf32dcfc8e75576420ffbd2f (patch) | |
tree | fee6e5c2430a5b5acdca9e0201dc4e44b994cafa /trans | |
parent | de4c6545203b090670182c0be36fce4f6f4f2c2a (diff) | |
download | hurd-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 'trans')
-rw-r--r-- | trans/new-fifo.c | 2 |
1 files changed, 1 insertions, 1 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"); |