aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorEugene Sandulenko2016-07-22 14:15:19 +0300
committerAlexander Tkachev2016-08-24 16:07:55 +0600
commit876b8616afc290028a714108ec476486d4ef9b8f (patch)
treef3c0cb8a209a669fe4de6d96924cc88f8c757862 /backends
parente114d1a697b21203b09ca2c607cbd86c3db05328 (diff)
downloadscummvm-rg350-876b8616afc290028a714108ec476486d4ef9b8f.tar.gz
scummvm-rg350-876b8616afc290028a714108ec476486d4ef9b8f.tar.bz2
scummvm-rg350-876b8616afc290028a714108ec476486d4ef9b8f.zip
CLOUD: Fix format warning
Diffstat (limited to 'backends')
-rw-r--r--backends/cloud/googledrive/googledrivestorage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/cloud/googledrive/googledrivestorage.cpp b/backends/cloud/googledrive/googledrivestorage.cpp
index 3d87be36d5..33b2bf5efd 100644
--- a/backends/cloud/googledrive/googledrivestorage.cpp
+++ b/backends/cloud/googledrive/googledrivestorage.cpp
@@ -232,7 +232,7 @@ void GoogleDriveStorage::printInfo(StorageInfoResponse response) {
debug(9, "\nuser info:");
debug(9, "\tname: %s", response.value.name().c_str());
debug(9, "\temail: %s", response.value.email().c_str());
- debug(9, "\tdisk usage: %llu/%llu", response.value.used(), response.value.available());
+ debug(9, "\tdisk usage: %lu/%lu", response.value.used(), response.value.available());
}
Networking::Request *GoogleDriveStorage::createDirectoryWithParentId(Common::String parentId, Common::String name, BoolCallback callback, Networking::ErrorCallback errorCallback) {