summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Elder <elder@linaro.org>2021-10-08 17:04:22 -0500
committerAlex Elder <elder@linaro.org>2021-10-08 17:05:42 -0500
commite61ff7276e98f9c4361667399e1eb56f7f500218 (patch)
treeaf4170cbcac65714b760d4864c82c6a695b4e4cb
parentde50c02678b2007ce60f71d998f348cbaf4eff24 (diff)
parser: fix another test fileHEADmaster
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>
-rw-r--r--tests/num_large.qmi2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/num_large.qmi b/tests/num_large.qmi
index 96ef038..376672d 100644
--- a/tests/num_large.qmi
+++ b/tests/num_large.qmi
@@ -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;