json-glib: update to 1.10.6
[oi-userland.git] / components / library / icu / patches / 139-source-tools-toolutil-pkg_genc.cpp.patch
blob5693022e9cb20c8eba05fe7d673d355ad108bcaf
2 # Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
4 to silence a SPARC specific build warning
5 https://unicode-org.atlassian.net/browse/ICU-13265
7 --- icu/source/tools/toolutil/pkg_genc.cpp.orig
8 +++ icu/source/tools/toolutil/pkg_genc.cpp
9 @@ -644,7 +644,7 @@
11 /* This creates a 32-bit field */
12 #if U_IS_BIG_ENDIAN
13 - for (i = 0; i < sizeof(uint32_t); i++)
14 + for (i = 0; i < (int)sizeof(uint32_t); i++)
15 #else
16 for (i = sizeof(uint32_t)-1; i >= 0 ; i--)
17 #endif