]> git.wh0rd.org Git - nano.git/commitdiff
One more type fix and two tiny message tweaks.
authorBenno Schulenberg <bensberg@justemail.net>
Tue, 10 Jun 2014 19:07:47 +0000 (19:07 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Tue, 10 Jun 2014 19:07:47 +0000 (19:07 +0000)
Patch by David Lawrence Ramsey.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4953 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/winio.c

index 0d30a2483111108220d2dac1bbb0b02facd64fb2..ab6b52126d40a80e287e60ddf4df367869d4ce5d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2014-06-10  David Lawrence Ramsey  <pooka109@gmail.com>
+       * src/winio.c: One more type fix and two tiny message tweaks.
+
 2014-06-09  David Lawrence Ramsey  <pooka109@gmail.com>
        * src/*.c: Cosmetic tweaks of comments and whitespace.
        * src/help.c, src/rcfile.c, src/winio.c: Elide a function call by
index 439d15de70bf5387918245cefeff59e9a0d7be89..d39b4b58131bd4b556a724a3643e36205cda571e 100644 (file)
@@ -2915,11 +2915,11 @@ int update_line(filestruct *fileptr, size_t index)
            mvwaddch(edit, line, COLS - 1, '$');
 #ifndef NANO_TINY
     } else {
-        int full_length = strlenpt(fileptr->data);
+       size_t full_length = strlenpt(fileptr->data);
        for (index += COLS; index <= full_length && line < editwinrows; index += COLS) {
            line++;
 #ifdef DEBUG
-           fprintf(stderr, "update_line(): Softwrap code, moving to %d index %lu\n", line, (unsigned long)index);
+           fprintf(stderr, "update_line(): softwrap code, moving to %d index %lu\n", line, (unsigned long)index);
 #endif
            blank_line(edit, line, 0, COLS);
 
@@ -3286,7 +3286,7 @@ void edit_update(update_type location)
     }
     openfile->edittop = foo;
 #ifdef DEBUG
-    fprintf(stderr, "edit_update(), setting edittop to lineno %ld\n", (long)openfile->edittop->lineno);
+    fprintf(stderr, "edit_update(): setting edittop to lineno %ld\n", (long)openfile->edittop->lineno);
 #endif
     compute_maxrows();
     edit_refresh_needed = TRUE;