diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-07-07 02:25:16 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-07-07 02:25:16 +0000 |
commit | 9ec72d760f6840fe718aa79b7946c3fd52cd90ed (patch) | |
tree | 92bd68dcdb873dadbef9de67495f957966734700 /libps/tty.c | |
parent | 3efc309a18a5b7ba32157da2e8fb005fafbbd5d5 (diff) |
(ps_tty_short_name): Put extra parens around assignment inside if
test.
Diffstat (limited to 'libps/tty.c')
-rw-r--r-- | libps/tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libps/tty.c b/libps/tty.c index 53dfcc8b..d668827f 100644 --- a/libps/tty.c +++ b/libps/tty.c @@ -130,7 +130,7 @@ ps_tty_short_name(ps_tty_t tty) { if (name[pfx_len] == '\0') tty->short_name = abbrev->subst; - else if (subst[0] = '\0') + else if ((subst[0] = '\0')) tty->short_name = name + pfx_len; else { |