bug-apl
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug-apl] Base64


From: Tobia Conforto
Subject: [Bug-apl] Base64
Date: Tue, 30 Dec 2014 01:30:48 +0100

Hi Jürgen,
here's a little fix. The base64 chars had S and T misplaced.

Tobia


--- src/QuadFunction.cc    (revision 520)
+++ src/QuadFunction.cc    (working copy)
@@ -413,8 +413,8 @@
                const ShapeItem full_quantums = B.element_count() / 3;
                const ShapeItem len_Z = 4 * ((B.element_count() + 2) / 3);
                Value_P Z(new Value(len_Z, LOC));
-               alpha = "ABCDEFGHIJKLMNOPQRTSUVWXYZ"
-                       "abcdefghijklmnopqrtsuvwxyz"
+               alpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+                       "abcdefghijklmnopqrstuvwxyz"
                        "0123456789+/";
                const Cell * cB = &B.get_ravel(0);
                loop(b, full_quantums)   // encode full quantums


reply via email to

[Prev in Thread] Current Thread [Next in Thread]