diff options
author | aunsane <aunsane@gmail.com> | 2017-04-23 23:14:07 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2017-04-23 23:14:45 +0300 |
commit | 03a956612c2c98eae68f6a8c50ccc08c2cef8f7c (patch) | |
tree | df73cc51224204a448110fcd200010109e6f8133 /plugins/CloudFile/src/Services | |
parent | 856629d0e757c73720097fd89d598c097df86c2b (diff) |
CloudFile: attempt to fix build on VS2010
Diffstat (limited to 'plugins/CloudFile/src/Services')
-rw-r--r-- | plugins/CloudFile/src/Services/dropbox_service.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CloudFile/src/Services/dropbox_service.cpp b/plugins/CloudFile/src/Services/dropbox_service.cpp index 1feeddce47..10fbf7ef40 100644 --- a/plugins/CloudFile/src/Services/dropbox_service.cpp +++ b/plugins/CloudFile/src/Services/dropbox_service.cpp @@ -196,7 +196,7 @@ void CDropboxService::CreateSharedLink(const char *path, char *url) root = GetJsonResponse(response); JSONNode links = root.at("links").as_array(); - JSONNode link = links[0u].at("url"); + JSONNode link = links[(size_t)0].at("url"); mir_strcpy(url, link.as_string().c_str()); } |