parser: fix another test file

In "tests/num_large.qmi", the same name is used twice for constant
symbols, which results in a parse error.  Fix this test file bug.

Fixes: ad48050 ("parser: properly support 64-bit numbers")
Signed-off-by: Alex Elder <elder@linaro.org>
This commit is contained in:
Alex Elder 2021-10-08 17:04:22 -05:00
parent de50c02678
commit e61ff7276e

View File

@ -3,7 +3,7 @@ package test;
# As a 32 bit signed number, this would be negative
const TEST_NUMBER = 0x87654321;
# This value requires more than 32 bits to represent
const TEST_NUMBER = 0x123456789;
const TEST_NUMBER2 = 0x123456789;
struct qmi_result {
u16 result;