diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-09-23 16:09:12 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-09-23 16:09:12 +0000 |
commit | d73516c0a977c46f057739f034f1b77fccaa9896 (patch) | |
tree | cb7156a3b4805a1122c54141cb671a29baef62f6 | |
parent | ac95da3afc0aef9fbb2a1f587c1b65dfbbe195da (diff) | |
download | rtmux-d73516c0a977c46f057739f034f1b77fccaa9896.tar.gz rtmux-d73516c0a977c46f057739f034f1b77fccaa9896.tar.bz2 rtmux-d73516c0a977c46f057739f034f1b77fccaa9896.zip |
Use __sun not __sun__ as Sun's CC doesn't define the latter.
-rw-r--r-- | window.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: window.c,v 1.108 2009-09-20 22:11:27 tcunha Exp $ */ +/* $Id: window.c,v 1.109 2009-09-23 16:09:12 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -568,7 +568,7 @@ window_pane_resize(struct window_pane *wp, u_int sx, u_int sy) wp->mode->resize(wp, sx, sy); if (wp->fd != -1 && ioctl(wp->fd, TIOCSWINSZ, &ws) == -1) -#ifdef __sun__ +#ifdef __sun /* * Some versions of Solaris apparently can return an error when * resizing; don't know why this happens, can't reproduce on |