aboutsummaryrefslogtreecommitdiff
path: root/server.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2010-03-16 23:40:14 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2010-03-16 23:40:14 +0000
commita2c87eb89912068b341f9f492c848768438c4043 (patch)
tree9e8a44fb7e9f20a648de2a1acdc7edfa54efbaf2 /server.c
parent33a90efc936a345c130bc2823c616ab1680385aa (diff)
downloadrtmux-a2c87eb89912068b341f9f492c848768438c4043.tar.gz
rtmux-a2c87eb89912068b341f9f492c848768438c4043.tar.bz2
rtmux-a2c87eb89912068b341f9f492c848768438c4043.zip
Unused variable.
Diffstat (limited to 'server.c')
-rw-r--r--server.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/server.c b/server.c
index 0b684268..d8d93918 100644
--- a/server.c
+++ b/server.c
@@ -1,4 +1,4 @@
-/* $Id: server.c,v 1.235 2010-02-08 18:29:32 tcunha Exp $ */
+/* $Id: server.c,v 1.236 2010-03-16 23:40:14 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -113,7 +113,7 @@ int
server_start(char *path)
{
struct window_pane *wp;
- int pair[2], retval;
+ int pair[2];
char *cause;
struct timeval tv;
u_int i;
@@ -185,7 +185,6 @@ server_start(char *path)
server_fd = server_create_socket();
server_client_create(pair[1]);
- retval = 0;
if (access(SYSTEM_CFG, R_OK) == 0)
load_cfg(SYSTEM_CFG, NULL, &cfg_causes);
else if (errno != ENOENT) {