]> git.wh0rd.org Git - nano.git/commitdiff
in do_browser(), make old_selected a size_t too, to match selected
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Thu, 23 Mar 2006 23:17:27 +0000 (23:17 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Thu, 23 Mar 2006 23:17:27 +0000 (23:17 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3315 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/browser.c

index a71d9eecd7d47d763cca5835d88892974aa09ce8..93896a54769910933add80899b5c382705a83754 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -33,9 +33,9 @@ CVS code -
          the file list display after returning from the help browser at
          the "Go To Directory" prompt. (DLR)
        - Rename variable j to i, for consistency. (DLR)
-       - Make fileline and the static selected size_t's, since the
-         latter can hold the value of the former, and the former can be
-         that large. (DLR)
+       - Make fileline, old_selected, and the static selected size_t's,
+         since the first and second can hold the value of the third,
+         and the first can be that large. (DLR)
 - chars.c:
   mbstrchr()
        - Make parameter c const. (DLR)
index 943f43f16673667d808001bd0115e672bb516139..00c530b1bc498789d3c0cce057f6caf885b5a159 100644 (file)
@@ -114,7 +114,7 @@ char *do_browser(char *path, DIR *dir)
                /* If we clicked in the edit window, we probably clicked
                 * on a file. */
                if (wenclose(edit, mevent.y, mevent.x)) {
-                   int old_selected = selected;
+                   size_t old_selected = selected;
 
                    /* Subtract out the size of topwin. */
                    mevent.y -= 2 - no_more_space();