aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-05-14 16:26:00 -0400
committerJesse Luehrs <doy@tozt.net>2016-05-14 16:26:00 -0400
commit9b47369c317327eb92c6690b6374793d3645b6cc (patch)
treecf827436e7e177da3c76711b1508ea67aa029771
parent9ed4bbcbd73ccbfa45fd047448c564c1ff67f252 (diff)
downloadrunes-9b47369c317327eb92c6690b6374793d3645b6cc.tar.gz
runes-9b47369c317327eb92c6690b6374793d3645b6cc.zip
formatting
-rw-r--r--src/runesc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runesc.c b/src/runesc.c
index e18478e..5046b98 100644
--- a/src/runesc.c
+++ b/src/runesc.c
@@ -63,8 +63,8 @@ static int runes_socket_open_client(char *name)
client.sun_family = AF_UNIX;
strcpy(client.sun_path, name);
if (connect(s, (struct sockaddr*)(&client), sizeof(struct sockaddr_un))) {
- runes_die("couldn't connect to socket at %s: %s", name,
- strerror(errno));
+ runes_die(
+ "couldn't connect to socket at %s: %s", name, strerror(errno));
}
return s;