From: David Lawrence Ramsey Date: Mon, 29 Mar 2004 23:09:08 +0000 (+0000) Subject: fix error in changelog and add missing size_t cast X-Git-Tag: v1.3.2~2 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=0b047c561dec8d2141acad0085da3494c2b4c235;p=nano.git fix error in changelog and add missing size_t cast git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1702 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/ChangeLog b/ChangeLog index e793d204..d2cfedb3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -224,9 +224,12 @@ CVS code - get_escape_seq_abcd() - A resurrected version of the old abcd() function, readded in order to simplify get_escape_seq_kbinput(). (DLR) - get_mouse_kbinput() + get_mouseinput() - Interpret shortcut key values slightly more stringently when ungetch()ing them. (DLR) + strlenpt() + - Properly cast the second parameter of the strnlenpt() call to + size_t. (DLR) get_page_start() - For consistency, tweak so that scrolling always occurs when we try to move onto the "$" at the end of the line, as opposed to diff --git a/src/winio.c b/src/winio.c index e7b50294..d4252186 100644 --- a/src/winio.c +++ b/src/winio.c @@ -926,7 +926,7 @@ size_t strnlenpt(const char *buf, size_t size) /* How many columns wide is buf? */ size_t strlenpt(const char *buf) { - return strnlenpt(buf, -1); + return strnlenpt(buf, (size_t)-1); } void blank_bottombars(void)