View | Details | Raw Unified | Return to bug 235958
Collapse All | Expand All

(-)files/patch-src_Corrade_Utility_Endianness.h (+11 lines)
Line 0 Link Here
1
--- src/Corrade/Utility/Endianness.h.orig	2019-02-23 10:24:48 UTC
2
+++ src/Corrade/Utility/Endianness.h
3
@@ -65,7 +65,7 @@ class Endianness {
4
          */
5
         template<class T> static T bigEndian(T value) {
6
             #ifdef CORRADE_BIG_ENDIAN
7
-            return number;
8
+            return value;
9
             #else
10
             return swap(value);
11
             #endif

Return to bug 235958