diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-09-21 18:00:58 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-09-21 18:00:58 +0000 |
commit | 24b978adb770b4b0b6f85b8bac963d5255d55c03 (patch) | |
tree | 319e06ac455bb38aa6861e97ba79e61b72d45b49 /tmux.c | |
parent | 8ac1d46f9bc7e02c8d5a39cb1da512259fc909b5 (diff) | |
download | rtmux-24b978adb770b4b0b6f85b8bac963d5255d55c03.tar.gz rtmux-24b978adb770b4b0b6f85b8bac963d5255d55c03.tar.bz2 rtmux-24b978adb770b4b0b6f85b8bac963d5255d55c03.zip |
Don't resize unless size changed.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.c,v 1.7 2007-09-20 09:43:33 nicm Exp $ */ +/* $Id: tmux.c,v 1.8 2007-09-21 18:00:58 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -190,7 +190,7 @@ restart: else if (op != OP_LIST) { if (server_start() != 0) errx(1, "couldn't start server"); - sleep(1); + sleep(1); /* XXX this sucks */ } } else { if (!S_ISSOCK(sb.st_mode)) |