Fix a typo in definition of MiB constant.

This commit is contained in:
Andrius Štikonas 2022-02-15 19:06:12 +00:00
parent 94c1ff7133
commit fb1708b958
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@
#include <QString>
class QDBusServiceWatcher;
constexpr qint64 MiB = 1 << 30;
constexpr qint64 MiB = 1 << 20;
class ExternalCommandHelper : public QObject, public QDBusContext
{