Fixed.
authorDaiki Ueno <ueno@unixuser.org>
Wed, 22 Oct 2003 22:13:52 +0000 (22:13 +0000)
committerDaiki Ueno <ueno@unixuser.org>
Wed, 22 Oct 2003 22:13:52 +0000 (22:13 +0000)
lisp/riece-rdcc.el

index e7f7f27..85954c7 100644 (file)
@@ -265,7 +265,7 @@ puts(\"#{" address " >> 24 & 0xFF}.#{" address " >> 16 & 0xFF}.#{"
 
 (defun riece-rdcc-format-size (size)
   (if (< size 1024)
-      (format "%0.1fB" size)
+      (format "%0.1f" size)
     (setq size (/ size 1024.0))
     (if (< size 1024)
        (format "%0.1fKB" size)