summaryrefslogtreecommitdiffstats
path: root/games/lgogdownloader/fix-compiling-with-jsoncpp-1.7.1.patch
diff options
context:
space:
mode:
Diffstat (limited to 'games/lgogdownloader/fix-compiling-with-jsoncpp-1.7.1.patch')
-rw-r--r--games/lgogdownloader/fix-compiling-with-jsoncpp-1.7.1.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/games/lgogdownloader/fix-compiling-with-jsoncpp-1.7.1.patch b/games/lgogdownloader/fix-compiling-with-jsoncpp-1.7.1.patch
new file mode 100644
index 0000000000..4c6f493f7c
--- /dev/null
+++ b/games/lgogdownloader/fix-compiling-with-jsoncpp-1.7.1.patch
@@ -0,0 +1,27 @@
+From 519cb78d38be04a3af79784b5326e21651ced6e1 Mon Sep 17 00:00:00 2001
+From: Sude <lgogdownloader@gmail.com>
+Date: Fri, 25 Mar 2016 23:09:17 +0200
+Subject: [PATCH] Fix compiling with JsonCpp 1.7.1
+
+---
+ src/util.cpp | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/util.cpp b/src/util.cpp
+index 4b98c45..3d9dfed 100644
+--- a/src/util.cpp
++++ b/src/util.cpp
+@@ -388,11 +388,11 @@ int Util::getTerminalWidth()
+ void Util::getDownloaderUrlsFromJSON(const Json::Value &root, std::vector<std::string> &urls)
+ {
+ if(root.size() > 0) {
+- for(Json::ValueIterator it = root.begin() ; it != root.end() ; ++it)
++ for(Json::ValueConstIterator it = root.begin() ; it != root.end() ; ++it)
+ {
+ if (it.key() == "downloaderUrl")
+ {
+- Json::Value& url = *it;
++ Json::Value url = *it;
+ urls.push_back(url.asString());
+ }
+ else