]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix bug #1934 Wrong values at media list in BAT
authorMarco van Wieringen <mvw@planets.elm.net>
Wed, 19 Sep 2012 08:14:59 +0000 (10:14 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:50:59 +0000 (14:50 +0200)
bacula/src/qt-console/util/fmtwidgetitem.cpp

index d284ac2f144c168b7095c4c76e50badcff95ea84..ef742bf51861d89eaaa5d0967f5bb92223cea1f3 100644 (file)
@@ -130,7 +130,7 @@ QString convertBytesIEC(qint64 qfld)
 
    /* having divided for a smaller unit, now we can safely convert to double and
       use the extra room for decimals */
-   return QString("%1 %2iB").arg(qfld / 1000.0, 0, 'f', 2).arg(suffix);
+   return QString("%1 %2iB").arg(qfld / 1024.0, 0, 'f', 2).arg(suffix);
 }
 
 /* String to human value based on k=1000 */