aboutsummaryrefslogtreecommitdiff
path: root/libraries/cln/patches/cln.git-3c6225a8b3fedffaba7279d86db96b8f180b3f28.patch
diff options
context:
space:
mode:
authorMatteo Bernardini <ponce@slackbuilds.org>2012-09-16 12:30:22 +0200
committerdsomero <xgizzmo@slackbuilds.org>2012-09-16 19:44:42 -0400
commitaa1f82bec5bc8594fa33f5b074af076402e0ffaf (patch)
tree2cd8b33ed43e04f31074522ed134035fa3a066a5 /libraries/cln/patches/cln.git-3c6225a8b3fedffaba7279d86db96b8f180b3f28.patch
parentbc667d563855e5f521ae41074bc8497a0769f9a4 (diff)
libraries/cln: Updated for version 1.3.2.
Added also a couple of patches from git Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'libraries/cln/patches/cln.git-3c6225a8b3fedffaba7279d86db96b8f180b3f28.patch')
-rw-r--r--libraries/cln/patches/cln.git-3c6225a8b3fedffaba7279d86db96b8f180b3f28.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/libraries/cln/patches/cln.git-3c6225a8b3fedffaba7279d86db96b8f180b3f28.patch b/libraries/cln/patches/cln.git-3c6225a8b3fedffaba7279d86db96b8f180b3f28.patch
new file mode 100644
index 0000000000000..42a5a1c3edf50
--- /dev/null
+++ b/libraries/cln/patches/cln.git-3c6225a8b3fedffaba7279d86db96b8f180b3f28.patch
@@ -0,0 +1,34 @@
+From: Richard Kreckel <kreckel@ginac.de>
+Date: Fri, 2 Mar 2012 22:40:34 +0000 (+0100)
+Subject: Fix bug in converting cl_LF to float, double.
+X-Git-Url: http://www.ginac.de/CLN/cln.git/?p=cln.git;a=commitdiff_plain;h=3c6225a8b3fedffaba7279d86db96b8f180b3f28
+
+Fix bug in converting cl_LF to float, double.
+---
+
+diff --git a/src/float/conv/cl_LF_to_double.cc b/src/float/conv/cl_LF_to_double.cc
+index 078bd1b..f9f5e86 100644
+--- a/src/float/conv/cl_LF_to_double.cc
++++ b/src/float/conv/cl_LF_to_double.cc
+@@ -20,7 +20,7 @@ double double_approx (const cl_LF& x)
+ {
+ // x entpacken:
+ var cl_signean sign;
+- var sintL exp;
++ var sintE exp;
+ var uintD* ptr;
+ var uintC len;
+ LF_decode(x, { return 0.0; }, sign=,exp=,ptr=,len=,);
+diff --git a/src/float/conv/cl_LF_to_float.cc b/src/float/conv/cl_LF_to_float.cc
+index 913b08e..b476d04 100644
+--- a/src/float/conv/cl_LF_to_float.cc
++++ b/src/float/conv/cl_LF_to_float.cc
+@@ -20,7 +20,7 @@ float float_approx (const cl_LF& x)
+ {
+ // x entpacken:
+ var cl_signean sign;
+- var sintL exp;
++ var sintE exp;
+ var uintD* ptr;
+ var uintC len;
+ LF_decode(x, { return 0.0; }, sign=,exp=,ptr=,len=,);