summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1994-09-22 03:09:04 +0000
committerache <ache@FreeBSD.org>1994-09-22 03:09:04 +0000
commit445e6edeb6f4e00eddd018dc1c38dd5e2cf2a331 (patch)
treea4c737886889f8be8783189942a7240f4bcfa29c /lib
parent6f769c973c00ca8300e8d714596d5634bc862331 (diff)
downloadFreeBSD-src-445e6edeb6f4e00eddd018dc1c38dd5e2cf2a331.zip
FreeBSD-src-445e6edeb6f4e00eddd018dc1c38dd5e2cf2a331.tar.gz
Fix mvcur typo bug from my previous fix
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 e6a790e..36b39fc 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);
}
OpenPOWER on IntegriCloud