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
此提交包含在:
@@ -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",
|
||||
|
新增問題並參考
封鎖使用者