aboutsummaryrefslogtreecommitdiff
path: root/window.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-05-14 07:58:38 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-05-14 07:58:38 +0000
commit4b64bd7b014f5e353a520983c973dad552394ba2 (patch)
tree49c675030ccb606dc2ace373c9cf300592b40d92 /window.c
parentc495337e762c1ac771d7a4e4c85f2893aed58924 (diff)
downloadrtmux-4b64bd7b014f5e353a520983c973dad552394ba2.tar.gz
rtmux-4b64bd7b014f5e353a520983c973dad552394ba2.tar.bz2
rtmux-4b64bd7b014f5e353a520983c973dad552394ba2.zip
It is HAVE_PTY_H, also add a cast to shut gcc up.
Diffstat (limited to 'window.c')
-rw-r--r--window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/window.c b/window.c
index 07214b78..73712f4b 100644
--- a/window.c
+++ b/window.c
@@ -1,4 +1,4 @@
-/* $Id: window.c,v 1.74 2009-05-13 23:27:00 nicm Exp $ */
+/* $Id: window.c,v 1.75 2009-05-14 07:58:38 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -38,7 +38,7 @@
#ifdef HAVE_LIBUTIL_H
#include <libutil.h>
#endif
-#ifdef USE_PTY_H
+#ifdef HAVE_PTY_H
#include <pty.h>
#endif
#ifdef HAVE_UTIL_H