aboutsummaryrefslogtreecommitdiffstats
path: root/src/runesc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/runesc.c')
-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;