]> git.wh0rd.org Git - nano.git/commitdiff
do_browser() - Don't shift the size of the file is it's less than 1K. Fixed files...
authorChris Allegretta <chrisa@asty.org>
Wed, 23 May 2001 21:54:47 +0000 (21:54 +0000)
committerChris Allegretta <chrisa@asty.org>
Wed, 23 May 2001 21:54:47 +0000 (21:54 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@669 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
files.c

index 3b798ab304b3f4bd9b8717abb029b0f620a25b22..e6dac68c8810d9d684114b36d6b821cd77cba868 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -49,6 +49,8 @@ Cvs code -
   do_browser()
        - Minor fixes to the processing of SELECT function (Rocco)
        - Added the "Goto Directory" code (Rocco)
+       - Don't shift the size of the file is it's less than 1K. Fixed
+         files less than 1K being displayed as 0B (Rocco).
 - global.c:
        - Updated some of the lists for the "Goto Directory" code (Rocco)
 - move.c:
diff --git a/files.c b/files.c
index 70f3e9ac136750c785317cbad38a754648966bf1..627045d235b7b49e72f8b8c65b4a919f9b7e1d8b 100644 (file)
--- a/files.c
+++ b/files.c
@@ -1416,7 +1416,7 @@ char *do_browser(char *inpath)
                        strcpy(foo + longest - 2, "--");
                } else if (st.st_size < (1 << 10)) /* less than 1 K */
                    sprintf(foo + longest - 7, "%4d  B", 
-                       (int) st.st_size >> 10);
+                       (int) st.st_size);
                else if (st.st_size >= (1 << 30)) /* at least 1 gig */
                    sprintf(foo + longest - 7, "%4d GB", 
                        (int) st.st_size >> 30);