Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 833d79b5 authored by Wu Gao's avatar Wu Gao Committed by Gerrit - the friendly Code Review server
Browse files

qcacmn: Fix compilation issue about decimal constant

There is compilation error about decimal constant on 32 arch. Fix is
to add suffix "UL" and to mark as unsigned.

Change-Id: I68b70fbfca4da244fdd9a82b1e28046c0a3b9a3d
CRs-Fixed: 2798875
parent ddd99fd7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -283,8 +283,8 @@ static uint32_t qdf_types_ut_uint32_array_parse(void)
{
	uint32_t errors = 0;
	uint32_t exp_array_value[10] = { 1, 100, 9997, 899965, 65536, 0,
					 4294967295, 268435456,
					 2164184149, 999999999};
					 4294967295U, 268435456U,
					 2164184149U, 999999999U};

	errors += ut_uint32_array_pass(
		  "1, 100, 9997, 899965, 65536, 0, 4294967295, 268435456, 2164184149, 999999999",