diff options
author | nicm <nicm> | 2015-07-13 15:51:31 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-07-13 15:51:31 +0000 |
commit | e45d624df288d914a1628d373ff245b03f7d600b (patch) | |
tree | 97d5ad87a07aff8e21a5f6444d57c65edfc8add4 /tty.c | |
parent | c7374c31c4ba176e94825e8d734b5abe8a6879b1 (diff) | |
download | rtmux-e45d624df288d914a1628d373ff245b03f7d600b.tar.gz rtmux-e45d624df288d914a1628d373ff245b03f7d600b.tar.bz2 rtmux-e45d624df288d914a1628d373ff245b03f7d600b.zip |
Fix line endings.
Diffstat (limited to 'tty.c')
-rw-r--r-- | tty.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -59,14 +59,14 @@ void tty_default_colours(struct grid_cell *, const struct window_pane *); #define tty_pane_full_width(tty, ctx) \ ((ctx)->xoff == 0 && screen_size_x((ctx)->wp->screen) >= (tty)->sx) -int
+int tty_init(struct tty *tty, struct client *c, int fd, char *term) { char *path; - if (!isatty(fd))
- return (-1);
-
+ if (!isatty(fd)) + return (-1); + memset(tty, 0, sizeof *tty); tty->log_fd = -1; @@ -78,15 +78,15 @@ tty_init(struct tty *tty, struct client *c, int fd, char *term) tty->client = c; if ((path = ttyname(fd)) == NULL) - return (-1);
+ return (-1); tty->path = xstrdup(path); tty->cstyle = 0; tty->ccolour = xstrdup(""); tty->flags = 0; tty->term_flags = 0; -
- return (0);
+ + return (0); } int |