From 553e201119542966caecefbb9f7cdad965c29239 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Mon, 4 Jun 2018 05:41:58 -0400 Subject: [PATCH] fish: rc: Minor whitespace fixes. --- fish/rc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fish/rc.c b/fish/rc.c index 6a404c802..6ab787d78 100644 --- a/fish/rc.c +++ b/fish/rc.c @@ -274,7 +274,7 @@ rc_listen (void) if (s == -1) perror ("accept"); else { - receive_stdout(s); + receive_stdout (s); fp = fdopen (s, "r+"); xdrstdio_create (&xdr, fp, XDR_DECODE); @@ -389,7 +389,7 @@ rc_remote (int pid, const char *cmd, size_t argc, char *argv[], return -1; } - send_stdout(sock); + send_stdout (sock); /* Send the greeting. */ fp = fdopen (sock, "r+");