diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-25 10:59:44 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-25 10:59:44 +0000 |
commit | 0f0dd4a56605f28106d2c7c8a64969a5e5fd25a5 (patch) | |
tree | 268be3e501e0a8bd1cd86872d897eae1578f3f47 | |
parent | 87b418b13ee7aa0912a6d83591b5bc9d24015246 (diff) | |
download | rtmux-0f0dd4a56605f28106d2c7c8a64969a5e5fd25a5.tar.gz rtmux-0f0dd4a56605f28106d2c7c8a64969a5e5fd25a5.tar.bz2 rtmux-0f0dd4a56605f28106d2c7c8a64969a5e5fd25a5.zip |
Init local_log to -1.
-rw-r--r-- | local.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $Id: local.c,v 1.21 2007-11-25 10:56:22 nicm Exp $ */ +/* $Id: local.c,v 1.22 2007-11-25 10:59:44 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -204,8 +204,8 @@ struct local_key local_keys[] = { }; /* tty file descriptor and local terminal buffers. */ -int local_fd; -int local_log; +int local_fd = -1; +int local_log = -1; struct buffer *local_in; struct buffer *local_out; struct termios local_tio; |