diff options
author | Ryan Tilder <[email protected]> | 2010-08-06 15:07:32 -0700 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-09-29 16:39:05 +0200 |
commit | 9b6cd9712b34a1705fc1ec2dda4878d0bbb3b1e4 (patch) | |
tree | 950a5f804314dfd659352303f9aec06363bf49de /erts/etc | |
parent | 8e9a96141120b43b4edf05705a2a261916a902a5 (diff) | |
download | otp-9b6cd9712b34a1705fc1ec2dda4878d0bbb3b1e4.tar.gz otp-9b6cd9712b34a1705fc1ec2dda4878d0bbb3b1e4.tar.bz2 otp-9b6cd9712b34a1705fc1ec2dda4878d0bbb3b1e4.zip |
Fix a typo that leads to syntax errors with DEBUG defined in run_erl
While attempting to debug odd terminal echo issues on Solaris, I noticed that
run_erl.c will fail to compile due to a typo causing a syntax error.
Diffstat (limited to 'erts/etc')
-rw-r--r-- | erts/etc/unix/run_erl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/etc/unix/run_erl.c b/erts/etc/unix/run_erl.c index 4bb148df98..07d8071720 100644 --- a/erts/etc/unix/run_erl.c +++ b/erts/etc/unix/run_erl.c @@ -982,7 +982,7 @@ static int open_pty_slave(char *name) } #ifdef DEBUG - if (tcgetattr(sfd, &tty_rmode) , 0) { + if (tcgetattr(sfd, &tty_rmode) < 0) { fprintf(stderr, "Cannot get terminals current mode\n"); exit(-1); } |