On Tue, Dec 12, 2017 at 06:56:33PM +0200, Adrian Bunk wrote:
>...
> Bug-Debian: https://bugs.debian.org/878821
>...
This line was nonsense, corrected patch attached.
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
Description: Fix FTBFS on big endian
Author: Adrian Bunk <[email protected]>
Bug-Debian: https://bugs.debian.org/884202
--- norm-1.5r6+dfsg1.orig/protolib/include/protoSpace.h
+++ norm-1.5r6+dfsg1/protolib/include/protoSpace.h
@@ -89,7 +89,7 @@ class ProtoSpace
}
#else
ProtoTree::Endian GetEndian() const
- return ProtoTree::ENDIAN_BIG;
+ {return ProtoTree::ENDIAN_BIG;}
void SetNode(Node* theNode)
{memcpy(key+sizeof(double), &theNode, sizeof(Node*));}
Node* GetNode() const