diff options
author | George Hazan <george.hazan@gmail.com> | 2015-04-29 19:55:45 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-04-29 19:55:45 +0000 |
commit | ffeeb3f6116a49df9b74d79f2c2e86e4163871e1 (patch) | |
tree | b0c2c2e60a9f1a9cbc6bfc2e9d0b991ac6776f20 /protocols/Twitter/src/utility.cpp | |
parent | 3be7f4f732f1e58288cf3f43ba8eef54dadc0d32 (diff) |
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@13254 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Twitter/src/utility.cpp')
-rw-r--r-- | protocols/Twitter/src/utility.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Twitter/src/utility.cpp b/protocols/Twitter/src/utility.cpp index 4956a6404c..799460e96d 100644 --- a/protocols/Twitter/src/utility.cpp +++ b/protocols/Twitter/src/utility.cpp @@ -42,7 +42,7 @@ std::string int2str(uint64_t iVal) uint64_t str2int(const std::string &str)
{
- return atoll(str.c_str());
+ return _atoi64(str.c_str());
}
http::response mir_twitter::slurp(const std::string &url, http::method meth, OAuthParameters postParams)
|