aboutsummaryrefslogtreecommitdiff
path: root/std.c
diff options
context:
space:
mode:
authorMatthias-Christian Ott <ott@enolink.de>2008-06-02 20:01:35 +0200
committerMatthias-Christian Ott <ott@enolink.de>2008-06-02 20:01:35 +0200
commit693e2413c8c114c6a95327a609c28be643b9d582 (patch)
tree7c9ed81ed29d296e3d633106717a830a275b31d1 /std.c
parent0b3510df45057bf63f0e3b5ce225ff4491912bb8 (diff)
downloadst-693e2413c8c114c6a95327a609c28be643b9d582.tar.gz
st-693e2413c8c114c6a95327a609c28be643b9d582.zip
simplify control flow
Diffstat (limited to 'std.c')
-rw-r--r--std.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/std.c b/std.c
index 53cbd2d..5368f67 100644
--- a/std.c
+++ b/std.c
@@ -109,11 +109,9 @@ getpty(void) {
109 ptm = posix_openpt(O_RDWR); 109 ptm = posix_openpt(O_RDWR);
110#else 110#else
111 ptm = open("/dev/ptmx", O_RDWR); 111 ptm = open("/dev/ptmx", O_RDWR);
112 if(ptm == -1) { 112 if(ptm == -1)
113 if(openpty(&ptm, &pts, NULL, NULL, NULL) == -1) 113 if(openpty(&ptm, &pts, NULL, NULL, NULL) == -1)
114 eprintn("error, cannot open pty"); 114 eprintn("error, cannot open pty");
115 return;
116 }
117#endif 115#endif
118#if defined(_XOPEN_SOURCE) 116#if defined(_XOPEN_SOURCE)
119 if(ptm != -1) { 117 if(ptm != -1) {