From: Maintainers of Mozilla-related packages Date: Wed, 18 Jan 2023 09:54:32 +0000 (+0000) Subject: build-i386-mismatched-type-unsigned-long-int X-Git-Tag: archive/raspbian/102.9.0esr-1_deb10u1+rpi1~2^2^2^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=7965d0de38416e8d93559972f94e61f39a645863;p=firefox-esr.git build-i386-mismatched-type-unsigned-long-int Gbp-Pq: Topic porting Gbp-Pq: Name build-i386-mismatched-type-unsigned-long-int.patch --- diff --git a/toolkit/components/telemetry/tests/gtest/TestCombinedStacks.cpp b/toolkit/components/telemetry/tests/gtest/TestCombinedStacks.cpp index 3e21c7378c3..284f35bda14 100644 --- a/toolkit/components/telemetry/tests/gtest/TestCombinedStacks.cpp +++ b/toolkit/components/telemetry/tests/gtest/TestCombinedStacks.cpp @@ -86,11 +86,15 @@ TEST(CombinedStacks, Combine) // 01 +3000 // 02 modZ+2000 // 03 base+4000 + uintptr_t args1[] = {100, 200, 300}; + uintptr_t args2[] = {1000, 2000, 3000}; + uintptr_t args3[] = {100, 200, 300, 400}; + uintptr_t args4[] = {1000, 2000, 3000, 4000}; const ProcessedStack testStacks[] = { - MakeStack(moduleSet1, {100ul, 200ul, 300ul}), - MakeStack(moduleSet1, {1000ul, 2000ul, 3000ul}), - MakeStack(moduleSet2, {100ul, 200ul, 300ul, 400ul}), - MakeStack(moduleSet2, {1000ul, 2000ul, 3000ul, 4000ul}), + MakeStack(moduleSet1, args1), + MakeStack(moduleSet1, args2), + MakeStack(moduleSet2, args3), + MakeStack(moduleSet2, args4), }; // combined1 <-- testStacks[0] + testStacks[1]