mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 06:01:33 -06:00
Use signed integer type for counters
This commit is contained in:
@@ -126,8 +126,8 @@ namespace
|
||||
map[KEY_TRANSFER_DLRATELIMIT] = session->downloadSpeedLimit();
|
||||
map[KEY_TRANSFER_UPRATELIMIT] = session->uploadSpeedLimit();
|
||||
|
||||
const quint64 atd = session->getAlltimeDL();
|
||||
const quint64 atu = session->getAlltimeUL();
|
||||
const qint64 atd = session->getAlltimeDL();
|
||||
const qint64 atu = session->getAlltimeUL();
|
||||
map[KEY_TRANSFER_ALLTIME_DL] = atd;
|
||||
map[KEY_TRANSFER_ALLTIME_UL] = atu;
|
||||
map[KEY_TRANSFER_TOTAL_WASTE_SESSION] = sessionStatus.totalWasted;
|
||||
|
||||
Reference in New Issue
Block a user