aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1994-09-22 03:09:04 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1994-09-22 03:09:04 +0000
commit8354392e6b02b5b3a442f652d51cb0f75d8fa78e (patch)
treea4c737886889f8be8783189942a7240f4bcfa29c /lib
parentb7e9accbaaa6bebe278bf76ec60106201a3ddf03 (diff)
Notes
Diffstat (limited to 'lib')
-rw-r--r--lib/libcurses/cr_put.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libcurses/cr_put.c b/lib/libcurses/cr_put.c
index e6a790ee5207..36b39fcfb486 100644
--- a/lib/libcurses/cr_put.c
+++ b/lib/libcurses/cr_put.c
@@ -79,7 +79,7 @@ __mvcur(ly, lx, y, x, in_refresh)
destline = y;
outcol = lx;
outline = ly;
- if (destline != destcol || outline != outcol)
+ if (destline != outline || destcol != outcol)
fgoto(in_refresh);
return (OK);
}