From 8354392e6b02b5b3a442f652d51cb0f75d8fa78e Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Thu, 22 Sep 1994 03:09:04 +0000 Subject: [PATCH] Fix mvcur typo bug from my previous fix --- lib/libcurses/cr_put.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }