python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / norm / 0001-fix-bigendian-build.patch
blobcf999c27cf4a3089cda27ec1b468743c4c201e78
1 Fix big-endian build breakage in protolib.
2 Patch status: submitted to author via email.
4 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
6 diff -Nura norm-1.5r6.orig/protolib/include/protoSpace.h norm-1.5r6/protolib/include/protoSpace.h
7 --- norm-1.5r6.orig/protolib/include/protoSpace.h 2016-03-08 19:48:21.326357963 -0300
8 +++ norm-1.5r6/protolib/include/protoSpace.h 2016-03-08 19:48:46.647234075 -0300
9 @@ -89,7 +89,7 @@
11 #else
12 ProtoTree::Endian GetEndian() const
13 - return ProtoTree::ENDIAN_BIG;
14 + {return ProtoTree::ENDIAN_BIG;}
15 void SetNode(Node* theNode)
16 {memcpy(key+sizeof(double), &theNode, sizeof(Node*));}
17 Node* GetNode() const